diff --git a/Common/Collectible/Block/BlockSchematic.cs b/Common/Collectible/Block/BlockSchematic.cs index e873c682..7225bb55 100644 --- a/Common/Collectible/Block/BlockSchematic.cs +++ b/Common/Collectible/Block/BlockSchematic.cs @@ -103,6 +103,7 @@ public class BlockSchematic /// /// Set by the RemapperAssistant in OnFinalizeAssets + ///
Heads up!: This is unordered, it will iterate through the different game versions' remaps not necessarily in the order they originally appear in remaps.json config. If any block remaps over the years have duplicate original block names, behavior for those ones may be unpredictable ///
public static Dictionary> BlockRemaps { get; set; } @@ -1042,8 +1043,19 @@ public void PlaceEntitiesAndBlockEntities(IBlockAccessor blockAccessor, IWorldAc Block encodedBlock = worldForCollectibleResolve.GetBlock(new AssetLocation(treeBlockCode)); if (encodedBlock != null && encodedBlock.GetType() != be.Block.GetType()) // It should be the same type at least, though it might have been rotated or had some other state change eg. snow to free or vice-versa { - worldForCollectibleResolve.Logger.Warning("Could not import block entity data for schematic at {0}. There is already {1}, expected {2}. Probably overlapping ruins.", curPos, be.Block, treeBlockCode); - continue; + foreach (var map in BlockRemaps) + { + if (map.Value.TryGetValue(treeBlockCode, out var newBlockCode)) + { + encodedBlock = worldForCollectibleResolve.GetBlock(new AssetLocation(newBlockCode)); + break; + } + } + if (encodedBlock != null && encodedBlock.GetType() != be.Block.GetType()) // Sanity check again, after the remapping + { + worldForCollectibleResolve.Logger.Warning("Could not import block entity data for schematic at {0}. There is already {1}, expected {2}. Possibly overlapping ruins, or is this schematic from an old game version?", curPos, be.Block, treeBlockCode); + continue; + } } } diff --git a/Config/GameVersion.cs b/Config/GameVersion.cs index ed546f35..3402887a 100644 --- a/Config/GameVersion.cs +++ b/Config/GameVersion.cs @@ -36,12 +36,12 @@ public static class GameVersion /// /// Whether this is a stable or unstable version /// - public const EnumGameBranch Branch = EnumGameBranch.Unstable; + public const EnumGameBranch Branch = EnumGameBranch.Stable; /// /// Version number in the format: major.minor.revision[appendix] /// - public const string ShortGameVersion = OverallVersion + "-rc.3"; + public const string ShortGameVersion = OverallVersion + ""; public static EnumReleaseType ReleaseType => GetReleaseType(ShortGameVersion); diff --git a/Math/Matrix/Matrix.cs b/Math/Matrix/Matrix.cs index 1c94ff8e..82621627 100644 --- a/Math/Matrix/Matrix.cs +++ b/Math/Matrix/Matrix.cs @@ -20,6 +20,12 @@ public Matrixf() Values = Mat4f.Create(); } + public Matrixf(float[] values) + { + Values = Mat4f.Create(); + Set(values); + } + public static Matrixf Create() { return new Matrixf(); @@ -179,6 +185,12 @@ public Matrixf Mul(float[] matrix) return this; } + public Matrixf Mul(Matrixf matrix) + { + Mat4f.Mul(Values, Values, matrix.Values); + return this; + } + public Matrixf ReverseMul(float[] matrix) { Mat4f.Mul(Values, matrix, Values); diff --git a/api/.manifest b/api/.manifest index 9d38701b..a3908b41 100644 --- a/api/.manifest +++ b/api/.manifest @@ -3312,6 +3312,7 @@ "Vintagestory.API.Client.MatrixToolsd.Project(Vintagestory.API.MathTools.Vec3d,System.Double[],System.Double[],System.Int32,System.Int32)": "Vintagestory.API.Client.MatrixToolsd.yml", "Vintagestory.API.Client.Matrixf": "Vintagestory.API.Client.Matrixf.yml", "Vintagestory.API.Client.Matrixf.#ctor": "Vintagestory.API.Client.Matrixf.yml", + "Vintagestory.API.Client.Matrixf.#ctor(System.Single[])": "Vintagestory.API.Client.Matrixf.yml", "Vintagestory.API.Client.Matrixf.Clone": "Vintagestory.API.Client.Matrixf.yml", "Vintagestory.API.Client.Matrixf.Create": "Vintagestory.API.Client.Matrixf.yml", "Vintagestory.API.Client.Matrixf.FollowPlayer": "Vintagestory.API.Client.Matrixf.yml", @@ -3319,6 +3320,7 @@ "Vintagestory.API.Client.Matrixf.Identity": "Vintagestory.API.Client.Matrixf.yml", "Vintagestory.API.Client.Matrixf.Invert": "Vintagestory.API.Client.Matrixf.yml", "Vintagestory.API.Client.Matrixf.Mul(System.Single[])": "Vintagestory.API.Client.Matrixf.yml", + "Vintagestory.API.Client.Matrixf.Mul(Vintagestory.API.Client.Matrixf)": "Vintagestory.API.Client.Matrixf.yml", "Vintagestory.API.Client.Matrixf.ReverseMul(System.Single[])": "Vintagestory.API.Client.Matrixf.yml", "Vintagestory.API.Client.Matrixf.Rotate(System.Single,System.Single,System.Single)": "Vintagestory.API.Client.Matrixf.yml", "Vintagestory.API.Client.Matrixf.Rotate(Vintagestory.API.MathTools.Vec3f)": "Vintagestory.API.Client.Matrixf.yml", diff --git a/api/CompactExifLib.ExifByteOrder.yml b/api/CompactExifLib.ExifByteOrder.yml index ea283df4..d20129fe 100644 --- a/api/CompactExifLib.ExifByteOrder.yml +++ b/api/CompactExifLib.ExifByteOrder.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExifByteOrder path: Util/ExifData.cs startLine: 4417 @@ -42,8 +42,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LittleEndian path: Util/ExifData.cs startLine: 4417 @@ -68,8 +68,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BigEndian path: Util/ExifData.cs startLine: 4417 diff --git a/api/CompactExifLib.ExifData.yml b/api/CompactExifLib.ExifData.yml index b1808bd2..54b6b0eb 100644 --- a/api/CompactExifLib.ExifData.yml +++ b/api/CompactExifLib.ExifData.yml @@ -84,8 +84,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExifData path: Util/ExifData.cs startLine: 75 @@ -119,8 +119,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ImageType path: Util/ExifData.cs startLine: 79 @@ -146,8 +146,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MakerNoteOriginalOffset path: Util/ExifData.cs startLine: 80 @@ -175,8 +175,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IfdShift path: Util/ExifData.cs startLine: 81 @@ -202,8 +202,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Util/ExifData.cs startLine: 91 @@ -236,8 +236,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Util/ExifData.cs startLine: 101 @@ -270,8 +270,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Empty path: Util/ExifData.cs startLine: 107 @@ -298,8 +298,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Save path: Util/ExifData.cs startLine: 120 @@ -332,8 +332,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Save path: Util/ExifData.cs startLine: 176 @@ -365,8 +365,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetTagValue path: Util/ExifData.cs startLine: 207 @@ -403,8 +403,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetTagValue path: Util/ExifData.cs startLine: 267 @@ -441,8 +441,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetTagValue path: Util/ExifData.cs startLine: 339 @@ -479,8 +479,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetTagValue path: Util/ExifData.cs startLine: 365 @@ -519,8 +519,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetTagValue path: Util/ExifData.cs startLine: 394 @@ -557,8 +557,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetTagValue path: Util/ExifData.cs startLine: 410 @@ -597,8 +597,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetTagValue path: Util/ExifData.cs startLine: 439 @@ -635,8 +635,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetTagValue path: Util/ExifData.cs startLine: 465 @@ -675,8 +675,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetTagValue path: Util/ExifData.cs startLine: 506 @@ -713,8 +713,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetTagValue path: Util/ExifData.cs startLine: 558 @@ -751,8 +751,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetTagRawData path: Util/ExifData.cs startLine: 620 @@ -793,8 +793,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetTagRawData path: Util/ExifData.cs startLine: 653 @@ -833,8 +833,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetTagRawData path: Util/ExifData.cs startLine: 690 @@ -875,8 +875,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetTagValueCount path: Util/ExifData.cs startLine: 719 @@ -911,8 +911,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetTagValueCount path: Util/ExifData.cs startLine: 734 @@ -947,8 +947,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetTagValueCount path: Util/ExifData.cs startLine: 745 @@ -985,8 +985,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetTagType path: Util/ExifData.cs startLine: 752 @@ -1021,8 +1021,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TagExists path: Util/ExifData.cs startLine: 767 @@ -1052,8 +1052,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IfdExists path: Util/ExifData.cs startLine: 779 @@ -1083,8 +1083,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ImageFileBlockExists path: Util/ExifData.cs startLine: 790 @@ -1114,8 +1114,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveTag path: Util/ExifData.cs startLine: 802 @@ -1145,8 +1145,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveAllTagsFromIfd path: Util/ExifData.cs startLine: 819 @@ -1176,8 +1176,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveAllTags path: Util/ExifData.cs startLine: 842 @@ -1202,8 +1202,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveImageFileBlock path: Util/ExifData.cs startLine: 854 @@ -1231,8 +1231,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReplaceAllTagsBy path: Util/ExifData.cs startLine: 884 @@ -1260,8 +1260,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ThumbnailImageExists path: Util/ExifData.cs startLine: 966 @@ -1288,8 +1288,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetThumbnailImage path: Util/ExifData.cs startLine: 981 @@ -1326,8 +1326,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetThumbnailImage path: Util/ExifData.cs startLine: 999 @@ -1364,8 +1364,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveThumbnailImage path: Util/ExifData.cs startLine: 1025 @@ -1396,8 +1396,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ByteOrder path: Util/ExifData.cs startLine: 1041 @@ -1425,8 +1425,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExtractIfd path: Util/ExifData.cs startLine: 1051 @@ -1456,8 +1456,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExtractTagId path: Util/ExifData.cs startLine: 1058 @@ -1487,8 +1487,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeTagSpec path: Util/ExifData.cs startLine: 1065 @@ -1520,8 +1520,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetTagByteCount path: Util/ExifData.cs startLine: 1073 @@ -1556,8 +1556,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExifReadUInt16 path: Util/ExifData.cs startLine: 1083 @@ -1592,8 +1592,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExifWriteUInt16 path: Util/ExifData.cs startLine: 1099 @@ -1628,8 +1628,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExifReadUInt32 path: Util/ExifData.cs startLine: 1114 @@ -1664,8 +1664,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExifWriteUInt32 path: Util/ExifData.cs startLine: 1136 @@ -1700,8 +1700,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InitTagEnumeration path: Util/ExifData.cs startLine: 1189 @@ -1731,8 +1731,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumerateNextTag path: Util/ExifData.cs startLine: 1209 @@ -1765,8 +1765,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDateTaken path: Util/ExifData.cs startLine: 1227 @@ -1799,8 +1799,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetDateTaken path: Util/ExifData.cs startLine: 1233 @@ -1833,8 +1833,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveDateTaken path: Util/ExifData.cs startLine: 1239 @@ -1859,8 +1859,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDateDigitized path: Util/ExifData.cs startLine: 1246 @@ -1893,8 +1893,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetDateDigitized path: Util/ExifData.cs startLine: 1252 @@ -1927,8 +1927,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveDateDigitized path: Util/ExifData.cs startLine: 1258 @@ -1953,8 +1953,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDateChanged path: Util/ExifData.cs startLine: 1265 @@ -1987,8 +1987,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetDateChanged path: Util/ExifData.cs startLine: 1271 @@ -2021,8 +2021,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveDateChanged path: Util/ExifData.cs startLine: 1277 @@ -2047,8 +2047,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetGpsLongitude path: Util/ExifData.cs startLine: 1284 @@ -2081,8 +2081,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetGpsLongitude path: Util/ExifData.cs startLine: 1290 @@ -2112,8 +2112,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveGpsLongitude path: Util/ExifData.cs startLine: 1296 @@ -2138,8 +2138,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetGpsLatitude path: Util/ExifData.cs startLine: 1303 @@ -2172,8 +2172,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetGpsLatitude path: Util/ExifData.cs startLine: 1309 @@ -2203,8 +2203,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveGpsLatitude path: Util/ExifData.cs startLine: 1315 @@ -2229,8 +2229,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetGpsAltitude path: Util/ExifData.cs startLine: 1322 @@ -2263,8 +2263,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetGpsAltitude path: Util/ExifData.cs startLine: 1342 @@ -2297,8 +2297,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveGpsAltitude path: Util/ExifData.cs startLine: 1361 @@ -2323,8 +2323,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetGpsDateTimeStamp path: Util/ExifData.cs startLine: 1368 @@ -2357,8 +2357,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetGpsDateTimeStamp path: Util/ExifData.cs startLine: 1392 @@ -2391,8 +2391,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveGpsDateTimeStamp path: Util/ExifData.cs startLine: 1422 diff --git a/api/CompactExifLib.ExifDateFormat.yml b/api/CompactExifLib.ExifDateFormat.yml index 44ed6130..36ca3368 100644 --- a/api/CompactExifLib.ExifDateFormat.yml +++ b/api/CompactExifLib.ExifDateFormat.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExifDateFormat path: Util/ExifData.cs startLine: 4236 @@ -42,8 +42,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DateAndTime path: Util/ExifData.cs startLine: 4238 @@ -68,8 +68,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DateOnly path: Util/ExifData.cs startLine: 4239 diff --git a/api/CompactExifLib.ExifErrCode.yml b/api/CompactExifLib.ExifErrCode.yml index 9c2b1984..efaba413 100644 --- a/api/CompactExifLib.ExifErrCode.yml +++ b/api/CompactExifLib.ExifErrCode.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExifErrCode path: Util/ExifData.cs startLine: 4434 @@ -47,8 +47,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InternalError path: Util/ExifData.cs startLine: 4436 @@ -73,8 +73,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ImageTypeIsNotSupported path: Util/ExifData.cs startLine: 4437 @@ -99,8 +99,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ImageHasUnsupportedFeatures path: Util/ExifData.cs startLine: 4438 @@ -125,8 +125,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InternalImageStructureIsWrong path: Util/ExifData.cs startLine: 4439 @@ -151,8 +151,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExifBlockHasIllegalContent path: Util/ExifData.cs startLine: 4440 @@ -177,8 +177,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExifDataAreTooLarge path: Util/ExifData.cs startLine: 4441 @@ -203,8 +203,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ImageTypesDoNotMatch path: Util/ExifData.cs startLine: 4442 diff --git a/api/CompactExifLib.ExifException.yml b/api/CompactExifLib.ExifException.yml index a6eefc1d..ea565fd3 100644 --- a/api/CompactExifLib.ExifException.yml +++ b/api/CompactExifLib.ExifException.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExifException path: Util/ExifData.cs startLine: 4460 @@ -66,8 +66,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ErrorCode path: Util/ExifData.cs startLine: 4462 @@ -93,8 +93,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Util/ExifData.cs startLine: 4464 @@ -125,8 +125,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Message path: Util/ExifData.cs startLine: 4469 diff --git a/api/CompactExifLib.ExifIfd.yml b/api/CompactExifLib.ExifIfd.yml index 9fd849ab..6b39612f 100644 --- a/api/CompactExifLib.ExifIfd.yml +++ b/api/CompactExifLib.ExifIfd.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExifIfd path: Util/ExifData.cs startLine: 3776 @@ -45,8 +45,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PrimaryData path: Util/ExifData.cs startLine: 3778 @@ -71,8 +71,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PrivateData path: Util/ExifData.cs startLine: 3779 @@ -97,8 +97,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsInfoData path: Util/ExifData.cs startLine: 3780 @@ -123,8 +123,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Interoperability path: Util/ExifData.cs startLine: 3781 @@ -149,8 +149,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ThumbnailData path: Util/ExifData.cs startLine: 3782 diff --git a/api/CompactExifLib.ExifLoadOptions.yml b/api/CompactExifLib.ExifLoadOptions.yml index 5425d6c8..cf8c9b0a 100644 --- a/api/CompactExifLib.ExifLoadOptions.yml +++ b/api/CompactExifLib.ExifLoadOptions.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExifLoadOptions path: Util/ExifData.cs startLine: 4420 @@ -51,8 +51,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateEmptyBlock path: Util/ExifData.cs startLine: 4423 diff --git a/api/CompactExifLib.ExifRational.yml b/api/CompactExifLib.ExifRational.yml index c9f52e2a..b03dc454 100644 --- a/api/CompactExifLib.ExifRational.yml +++ b/api/CompactExifLib.ExifRational.yml @@ -27,8 +27,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExifRational path: Util/ExifData.cs startLine: 4243 @@ -58,8 +58,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Numer path: Util/ExifData.cs startLine: 4245 @@ -85,8 +85,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Denom path: Util/ExifData.cs startLine: 4245 @@ -112,8 +112,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sign path: Util/ExifData.cs startLine: 4246 @@ -139,8 +139,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Util/ExifData.cs startLine: 4248 @@ -173,8 +173,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Util/ExifData.cs startLine: 4272 @@ -209,8 +209,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsNegative path: Util/ExifData.cs startLine: 4280 @@ -237,8 +237,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsPositive path: Util/ExifData.cs startLine: 4286 @@ -265,8 +265,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsZero path: Util/ExifData.cs startLine: 4292 @@ -293,8 +293,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsValid path: Util/ExifData.cs startLine: 4298 @@ -321,8 +321,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Util/ExifData.cs startLine: 4304 @@ -349,8 +349,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToDecimal path: Util/ExifData.cs startLine: 4312 @@ -380,8 +380,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromDecimal path: Util/ExifData.cs startLine: 4320 diff --git a/api/CompactExifLib.ExifSaveOptions.yml b/api/CompactExifLib.ExifSaveOptions.yml index eee4ff0b..93dd3d39 100644 --- a/api/CompactExifLib.ExifSaveOptions.yml +++ b/api/CompactExifLib.ExifSaveOptions.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExifSaveOptions path: Util/ExifData.cs startLine: 4427 diff --git a/api/CompactExifLib.ExifTag.yml b/api/CompactExifLib.ExifTag.yml index aaf5a485..15d55d8b 100644 --- a/api/CompactExifLib.ExifTag.yml +++ b/api/CompactExifLib.ExifTag.yml @@ -208,8 +208,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExifTag path: Util/ExifData.cs startLine: 3787 @@ -233,8 +233,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NewSubfileType path: Util/ExifData.cs startLine: 3790 @@ -259,8 +259,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SubfileType path: Util/ExifData.cs startLine: 3791 @@ -285,8 +285,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ImageWidth path: Util/ExifData.cs startLine: 3792 @@ -311,8 +311,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ImageLength path: Util/ExifData.cs startLine: 3793 @@ -337,8 +337,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BitsPerSample path: Util/ExifData.cs startLine: 3794 @@ -363,8 +363,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Compression path: Util/ExifData.cs startLine: 3795 @@ -389,8 +389,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PhotometricInterpretation path: Util/ExifData.cs startLine: 3796 @@ -415,8 +415,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Threshholding path: Util/ExifData.cs startLine: 3797 @@ -441,8 +441,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CellWidth path: Util/ExifData.cs startLine: 3798 @@ -467,8 +467,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CellLength path: Util/ExifData.cs startLine: 3799 @@ -493,8 +493,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FillOrder path: Util/ExifData.cs startLine: 3800 @@ -519,8 +519,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DocumentName path: Util/ExifData.cs startLine: 3801 @@ -545,8 +545,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ImageDescription path: Util/ExifData.cs startLine: 3802 @@ -571,8 +571,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Make path: Util/ExifData.cs startLine: 3803 @@ -597,8 +597,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Model path: Util/ExifData.cs startLine: 3804 @@ -623,8 +623,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StripOffsets path: Util/ExifData.cs startLine: 3805 @@ -649,8 +649,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Orientation path: Util/ExifData.cs startLine: 3806 @@ -675,8 +675,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SamplesPerPixel path: Util/ExifData.cs startLine: 3807 @@ -701,8 +701,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RowsPerStrip path: Util/ExifData.cs startLine: 3808 @@ -727,8 +727,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StripByteCounts path: Util/ExifData.cs startLine: 3809 @@ -753,8 +753,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinSampleValue path: Util/ExifData.cs startLine: 3810 @@ -779,8 +779,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxSampleValue path: Util/ExifData.cs startLine: 3811 @@ -805,8 +805,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XResolution path: Util/ExifData.cs startLine: 3812 @@ -831,8 +831,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: YResolution path: Util/ExifData.cs startLine: 3813 @@ -857,8 +857,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlanarConfiguration path: Util/ExifData.cs startLine: 3814 @@ -883,8 +883,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PageName path: Util/ExifData.cs startLine: 3815 @@ -909,8 +909,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XPosition path: Util/ExifData.cs startLine: 3816 @@ -935,8 +935,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: YPosition path: Util/ExifData.cs startLine: 3817 @@ -961,8 +961,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FreeOffsets path: Util/ExifData.cs startLine: 3818 @@ -987,8 +987,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FreeByteCounts path: Util/ExifData.cs startLine: 3819 @@ -1013,8 +1013,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GrayResponseUnit path: Util/ExifData.cs startLine: 3820 @@ -1039,8 +1039,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GrayResponseCurve path: Util/ExifData.cs startLine: 3821 @@ -1065,8 +1065,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: T4Options path: Util/ExifData.cs startLine: 3822 @@ -1091,8 +1091,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: T6Options path: Util/ExifData.cs startLine: 3823 @@ -1117,8 +1117,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ResolutionUnit path: Util/ExifData.cs startLine: 3824 @@ -1143,8 +1143,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PageNumber path: Util/ExifData.cs startLine: 3825 @@ -1169,8 +1169,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TransferFunction path: Util/ExifData.cs startLine: 3826 @@ -1195,8 +1195,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Software path: Util/ExifData.cs startLine: 3827 @@ -1221,8 +1221,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DateTime path: Util/ExifData.cs startLine: 3828 @@ -1247,8 +1247,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Artist path: Util/ExifData.cs startLine: 3829 @@ -1273,8 +1273,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HostComputer path: Util/ExifData.cs startLine: 3830 @@ -1299,8 +1299,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Predictor path: Util/ExifData.cs startLine: 3831 @@ -1325,8 +1325,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WhitePoint path: Util/ExifData.cs startLine: 3832 @@ -1351,8 +1351,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PrimaryChromaticities path: Util/ExifData.cs startLine: 3833 @@ -1377,8 +1377,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorMap path: Util/ExifData.cs startLine: 3834 @@ -1403,8 +1403,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HalftoneHints path: Util/ExifData.cs startLine: 3835 @@ -1429,8 +1429,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TileWidth path: Util/ExifData.cs startLine: 3836 @@ -1455,8 +1455,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TileLength path: Util/ExifData.cs startLine: 3837 @@ -1481,8 +1481,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TileOffsets path: Util/ExifData.cs startLine: 3838 @@ -1507,8 +1507,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TileByteCounts path: Util/ExifData.cs startLine: 3839 @@ -1533,8 +1533,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InkSet path: Util/ExifData.cs startLine: 3840 @@ -1559,8 +1559,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InkNames path: Util/ExifData.cs startLine: 3841 @@ -1585,8 +1585,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NumberOfInks path: Util/ExifData.cs startLine: 3842 @@ -1611,8 +1611,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DotRange path: Util/ExifData.cs startLine: 3843 @@ -1637,8 +1637,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TargetPrinter path: Util/ExifData.cs startLine: 3844 @@ -1663,8 +1663,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExtraSamples path: Util/ExifData.cs startLine: 3845 @@ -1689,8 +1689,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SampleFormat path: Util/ExifData.cs startLine: 3846 @@ -1715,8 +1715,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SMinSampleValue path: Util/ExifData.cs startLine: 3847 @@ -1741,8 +1741,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SMaxSampleValue path: Util/ExifData.cs startLine: 3848 @@ -1767,8 +1767,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TransferRange path: Util/ExifData.cs startLine: 3849 @@ -1793,8 +1793,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: YCbCrCoefficients path: Util/ExifData.cs startLine: 3850 @@ -1819,8 +1819,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: YCbCrSubSampling path: Util/ExifData.cs startLine: 3851 @@ -1845,8 +1845,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: YCbCrPositioning path: Util/ExifData.cs startLine: 3852 @@ -1871,8 +1871,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReferenceBlackWhite path: Util/ExifData.cs startLine: 3853 @@ -1897,8 +1897,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XmpMetadata path: Util/ExifData.cs startLine: 3854 @@ -1923,8 +1923,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Copyright path: Util/ExifData.cs startLine: 3855 @@ -1949,8 +1949,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IptcMetadata path: Util/ExifData.cs startLine: 3856 @@ -1975,8 +1975,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExifIfdPointer path: Util/ExifData.cs startLine: 3857 @@ -2001,8 +2001,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsInfoIfdPointer path: Util/ExifData.cs startLine: 3858 @@ -2027,8 +2027,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XpTitle path: Util/ExifData.cs startLine: 3859 @@ -2053,8 +2053,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XpComment path: Util/ExifData.cs startLine: 3860 @@ -2079,8 +2079,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XpAuthor path: Util/ExifData.cs startLine: 3861 @@ -2105,8 +2105,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XpKeywords path: Util/ExifData.cs startLine: 3862 @@ -2131,8 +2131,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XpSubject path: Util/ExifData.cs startLine: 3863 @@ -2157,8 +2157,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PrimaryDataPadding path: Util/ExifData.cs startLine: 3864 @@ -2183,8 +2183,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExposureTime path: Util/ExifData.cs startLine: 3867 @@ -2209,8 +2209,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FNumber path: Util/ExifData.cs startLine: 3868 @@ -2235,8 +2235,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExposureProgram path: Util/ExifData.cs startLine: 3869 @@ -2261,8 +2261,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SpectralSensitivity path: Util/ExifData.cs startLine: 3870 @@ -2287,8 +2287,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsoSpeedRatings path: Util/ExifData.cs startLine: 3871 @@ -2313,8 +2313,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PhotographicSensitivity path: Util/ExifData.cs startLine: 3872 @@ -2339,8 +2339,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Oecf path: Util/ExifData.cs startLine: 3873 @@ -2365,8 +2365,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SensitivityType path: Util/ExifData.cs startLine: 3874 @@ -2391,8 +2391,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StandardOutputSensitivity path: Util/ExifData.cs startLine: 3875 @@ -2417,8 +2417,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RecommendedExposureIndex path: Util/ExifData.cs startLine: 3876 @@ -2443,8 +2443,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsoSpeed path: Util/ExifData.cs startLine: 3877 @@ -2469,8 +2469,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsoSpeedLatitudeyyy path: Util/ExifData.cs startLine: 3878 @@ -2495,8 +2495,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsoSpeedLatitudezzz path: Util/ExifData.cs startLine: 3879 @@ -2521,8 +2521,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExifVersion path: Util/ExifData.cs startLine: 3880 @@ -2547,8 +2547,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DateTimeOriginal path: Util/ExifData.cs startLine: 3881 @@ -2573,8 +2573,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DateTimeDigitized path: Util/ExifData.cs startLine: 3882 @@ -2599,8 +2599,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OffsetTime path: Util/ExifData.cs startLine: 3883 @@ -2625,8 +2625,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OffsetTimeOriginal path: Util/ExifData.cs startLine: 3884 @@ -2651,8 +2651,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OffsetTimeDigitized path: Util/ExifData.cs startLine: 3885 @@ -2677,8 +2677,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComponentsConfiguration path: Util/ExifData.cs startLine: 3886 @@ -2703,8 +2703,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CompressedBitsPerPixel path: Util/ExifData.cs startLine: 3887 @@ -2729,8 +2729,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShutterSpeedValue path: Util/ExifData.cs startLine: 3888 @@ -2755,8 +2755,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ApertureValue path: Util/ExifData.cs startLine: 3889 @@ -2781,8 +2781,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BrightnessValue path: Util/ExifData.cs startLine: 3890 @@ -2807,8 +2807,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExposureBiasValue path: Util/ExifData.cs startLine: 3891 @@ -2833,8 +2833,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxApertureValue path: Util/ExifData.cs startLine: 3892 @@ -2859,8 +2859,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SubjectDistance path: Util/ExifData.cs startLine: 3893 @@ -2885,8 +2885,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MeteringMode path: Util/ExifData.cs startLine: 3894 @@ -2911,8 +2911,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LightSource path: Util/ExifData.cs startLine: 3895 @@ -2937,8 +2937,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Flash path: Util/ExifData.cs startLine: 3896 @@ -2963,8 +2963,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FocalLength path: Util/ExifData.cs startLine: 3897 @@ -2989,8 +2989,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SubjectArea path: Util/ExifData.cs startLine: 3898 @@ -3015,8 +3015,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MakerNote path: Util/ExifData.cs startLine: 3899 @@ -3041,8 +3041,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UserComment path: Util/ExifData.cs startLine: 3900 @@ -3067,8 +3067,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SubsecTime path: Util/ExifData.cs startLine: 3901 @@ -3093,8 +3093,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SubsecTimeOriginal path: Util/ExifData.cs startLine: 3902 @@ -3119,8 +3119,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SubsecTimeDigitized path: Util/ExifData.cs startLine: 3903 @@ -3145,8 +3145,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FlashPixVersion path: Util/ExifData.cs startLine: 3904 @@ -3171,8 +3171,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorSpace path: Util/ExifData.cs startLine: 3905 @@ -3197,8 +3197,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PixelXDimension path: Util/ExifData.cs startLine: 3906 @@ -3223,8 +3223,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PixelYDimension path: Util/ExifData.cs startLine: 3907 @@ -3249,8 +3249,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RelatedSoundFile path: Util/ExifData.cs startLine: 3908 @@ -3275,8 +3275,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InteroperabilityIfdPointer path: Util/ExifData.cs startLine: 3909 @@ -3301,8 +3301,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FlashEnergy path: Util/ExifData.cs startLine: 3910 @@ -3327,8 +3327,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SpatialFrequencyResponse path: Util/ExifData.cs startLine: 3911 @@ -3353,8 +3353,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FocalPlaneXResolution path: Util/ExifData.cs startLine: 3912 @@ -3379,8 +3379,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FocalPlaneYResolution path: Util/ExifData.cs startLine: 3913 @@ -3405,8 +3405,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FocalPlaneResolutionUnit path: Util/ExifData.cs startLine: 3914 @@ -3431,8 +3431,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SubjectLocation path: Util/ExifData.cs startLine: 3915 @@ -3457,8 +3457,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExposureIndex path: Util/ExifData.cs startLine: 3916 @@ -3483,8 +3483,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SensingMethod path: Util/ExifData.cs startLine: 3917 @@ -3509,8 +3509,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FileSource path: Util/ExifData.cs startLine: 3918 @@ -3535,8 +3535,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SceneType path: Util/ExifData.cs startLine: 3919 @@ -3561,8 +3561,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CfaPattern path: Util/ExifData.cs startLine: 3920 @@ -3587,8 +3587,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CustomRendered path: Util/ExifData.cs startLine: 3921 @@ -3613,8 +3613,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExposureMode path: Util/ExifData.cs startLine: 3922 @@ -3639,8 +3639,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WhiteBalance path: Util/ExifData.cs startLine: 3923 @@ -3665,8 +3665,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DigitalZoomRatio path: Util/ExifData.cs startLine: 3924 @@ -3691,8 +3691,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FocalLengthIn35mmFilm path: Util/ExifData.cs startLine: 3925 @@ -3717,8 +3717,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SceneCaptureType path: Util/ExifData.cs startLine: 3926 @@ -3743,8 +3743,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GainControl path: Util/ExifData.cs startLine: 3927 @@ -3769,8 +3769,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Contrast path: Util/ExifData.cs startLine: 3928 @@ -3795,8 +3795,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Saturation path: Util/ExifData.cs startLine: 3929 @@ -3821,8 +3821,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sharpness path: Util/ExifData.cs startLine: 3930 @@ -3847,8 +3847,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DeviceSettingDescription path: Util/ExifData.cs startLine: 3931 @@ -3873,8 +3873,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SubjectDistanceRange path: Util/ExifData.cs startLine: 3932 @@ -3899,8 +3899,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ImageUniqueId path: Util/ExifData.cs startLine: 3933 @@ -3925,8 +3925,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CameraOwnerName path: Util/ExifData.cs startLine: 3934 @@ -3951,8 +3951,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BodySerialNumber path: Util/ExifData.cs startLine: 3935 @@ -3977,8 +3977,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LensSpecification path: Util/ExifData.cs startLine: 3936 @@ -4003,8 +4003,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LensMake path: Util/ExifData.cs startLine: 3937 @@ -4029,8 +4029,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LensModel path: Util/ExifData.cs startLine: 3938 @@ -4055,8 +4055,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LensSerialNumber path: Util/ExifData.cs startLine: 3939 @@ -4081,8 +4081,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PrivateDataPadding path: Util/ExifData.cs startLine: 3940 @@ -4107,8 +4107,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OffsetSchema path: Util/ExifData.cs startLine: 3941 @@ -4133,8 +4133,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsVersionId path: Util/ExifData.cs startLine: 3944 @@ -4159,8 +4159,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsLatitudeRef path: Util/ExifData.cs startLine: 3945 @@ -4185,8 +4185,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsLatitude path: Util/ExifData.cs startLine: 3946 @@ -4211,8 +4211,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsLongitudeRef path: Util/ExifData.cs startLine: 3947 @@ -4237,8 +4237,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsLongitude path: Util/ExifData.cs startLine: 3948 @@ -4263,8 +4263,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsAltitudeRef path: Util/ExifData.cs startLine: 3949 @@ -4289,8 +4289,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsAltitude path: Util/ExifData.cs startLine: 3950 @@ -4315,8 +4315,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsTimeStamp path: Util/ExifData.cs startLine: 3951 @@ -4341,8 +4341,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsSatellites path: Util/ExifData.cs startLine: 3952 @@ -4367,8 +4367,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsStatus path: Util/ExifData.cs startLine: 3953 @@ -4393,8 +4393,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsMeasureMode path: Util/ExifData.cs startLine: 3954 @@ -4419,8 +4419,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsDop path: Util/ExifData.cs startLine: 3955 @@ -4445,8 +4445,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsSpeedRef path: Util/ExifData.cs startLine: 3956 @@ -4471,8 +4471,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsSpeed path: Util/ExifData.cs startLine: 3957 @@ -4497,8 +4497,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsTrackRef path: Util/ExifData.cs startLine: 3958 @@ -4523,8 +4523,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsTrack path: Util/ExifData.cs startLine: 3959 @@ -4549,8 +4549,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsImgDirectionRef path: Util/ExifData.cs startLine: 3960 @@ -4575,8 +4575,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsImgDirection path: Util/ExifData.cs startLine: 3961 @@ -4601,8 +4601,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsMapDatum path: Util/ExifData.cs startLine: 3962 @@ -4627,8 +4627,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsDestLatitudeRef path: Util/ExifData.cs startLine: 3963 @@ -4653,8 +4653,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsDestLatitude path: Util/ExifData.cs startLine: 3964 @@ -4679,8 +4679,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsDestLongitudeRef path: Util/ExifData.cs startLine: 3965 @@ -4705,8 +4705,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsDestLongitude path: Util/ExifData.cs startLine: 3966 @@ -4731,8 +4731,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsDestBearingRef path: Util/ExifData.cs startLine: 3967 @@ -4757,8 +4757,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsDestBearing path: Util/ExifData.cs startLine: 3968 @@ -4783,8 +4783,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsDestDistanceRef path: Util/ExifData.cs startLine: 3969 @@ -4809,8 +4809,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsDestDistance path: Util/ExifData.cs startLine: 3970 @@ -4835,8 +4835,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsProcessingMethod path: Util/ExifData.cs startLine: 3971 @@ -4861,8 +4861,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsAreaInformation path: Util/ExifData.cs startLine: 3972 @@ -4887,8 +4887,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsDateStamp path: Util/ExifData.cs startLine: 3973 @@ -4913,8 +4913,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsDifferential path: Util/ExifData.cs startLine: 3974 @@ -4939,8 +4939,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsHPositioningError path: Util/ExifData.cs startLine: 3975 @@ -4965,8 +4965,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InteroperabilityIndex path: Util/ExifData.cs startLine: 3978 @@ -4991,8 +4991,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InteroperabilityVersion path: Util/ExifData.cs startLine: 3979 @@ -5017,8 +5017,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ThumbnailImageWidth path: Util/ExifData.cs startLine: 3982 @@ -5043,8 +5043,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ThumbnailImageLength path: Util/ExifData.cs startLine: 3983 @@ -5069,8 +5069,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ThumbnailCompression path: Util/ExifData.cs startLine: 3984 @@ -5095,8 +5095,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ThumbnailXResolution path: Util/ExifData.cs startLine: 3985 @@ -5121,8 +5121,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ThumbnailYResolution path: Util/ExifData.cs startLine: 3986 @@ -5147,8 +5147,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ThumbnailResolutionUnit path: Util/ExifData.cs startLine: 3987 @@ -5173,8 +5173,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ThumbnailOrientation path: Util/ExifData.cs startLine: 3988 @@ -5199,8 +5199,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: JpegInterchangeFormat path: Util/ExifData.cs startLine: 3989 @@ -5225,8 +5225,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: JpegInterchangeFormatLength path: Util/ExifData.cs startLine: 3990 diff --git a/api/CompactExifLib.ExifTagId.yml b/api/CompactExifLib.ExifTagId.yml index 98c21415..230fadeb 100644 --- a/api/CompactExifLib.ExifTagId.yml +++ b/api/CompactExifLib.ExifTagId.yml @@ -200,8 +200,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExifTagId path: Util/ExifData.cs startLine: 3995 @@ -225,8 +225,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NewSubfileType path: Util/ExifData.cs startLine: 3998 @@ -251,8 +251,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SubfileType path: Util/ExifData.cs startLine: 3999 @@ -277,8 +277,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ImageWidth path: Util/ExifData.cs startLine: 4000 @@ -303,8 +303,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ImageLength path: Util/ExifData.cs startLine: 4001 @@ -329,8 +329,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BitsPerSample path: Util/ExifData.cs startLine: 4002 @@ -355,8 +355,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Compression path: Util/ExifData.cs startLine: 4003 @@ -381,8 +381,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PhotometricInterpretation path: Util/ExifData.cs startLine: 4004 @@ -407,8 +407,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Threshholding path: Util/ExifData.cs startLine: 4005 @@ -433,8 +433,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CellWidth path: Util/ExifData.cs startLine: 4006 @@ -459,8 +459,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CellLength path: Util/ExifData.cs startLine: 4007 @@ -485,8 +485,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FillOrder path: Util/ExifData.cs startLine: 4008 @@ -511,8 +511,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DocumentName path: Util/ExifData.cs startLine: 4009 @@ -537,8 +537,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ImageDescription path: Util/ExifData.cs startLine: 4010 @@ -563,8 +563,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Make path: Util/ExifData.cs startLine: 4011 @@ -589,8 +589,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Model path: Util/ExifData.cs startLine: 4012 @@ -615,8 +615,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StripOffsets path: Util/ExifData.cs startLine: 4013 @@ -641,8 +641,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Orientation path: Util/ExifData.cs startLine: 4014 @@ -667,8 +667,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SamplesPerPixel path: Util/ExifData.cs startLine: 4015 @@ -693,8 +693,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RowsPerStrip path: Util/ExifData.cs startLine: 4016 @@ -719,8 +719,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StripByteCounts path: Util/ExifData.cs startLine: 4017 @@ -745,8 +745,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinSampleValue path: Util/ExifData.cs startLine: 4018 @@ -771,8 +771,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxSampleValue path: Util/ExifData.cs startLine: 4019 @@ -797,8 +797,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XResolution path: Util/ExifData.cs startLine: 4020 @@ -823,8 +823,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: YResolution path: Util/ExifData.cs startLine: 4021 @@ -849,8 +849,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlanarConfiguration path: Util/ExifData.cs startLine: 4022 @@ -875,8 +875,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PageName path: Util/ExifData.cs startLine: 4023 @@ -901,8 +901,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XPosition path: Util/ExifData.cs startLine: 4024 @@ -927,8 +927,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: YPosition path: Util/ExifData.cs startLine: 4025 @@ -953,8 +953,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FreeOffsets path: Util/ExifData.cs startLine: 4026 @@ -979,8 +979,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FreeByteCounts path: Util/ExifData.cs startLine: 4027 @@ -1005,8 +1005,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GrayResponseUnit path: Util/ExifData.cs startLine: 4028 @@ -1031,8 +1031,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GrayResponseCurve path: Util/ExifData.cs startLine: 4029 @@ -1057,8 +1057,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: T4Options path: Util/ExifData.cs startLine: 4030 @@ -1083,8 +1083,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: T6Options path: Util/ExifData.cs startLine: 4031 @@ -1109,8 +1109,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ResolutionUnit path: Util/ExifData.cs startLine: 4032 @@ -1135,8 +1135,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PageNumber path: Util/ExifData.cs startLine: 4033 @@ -1161,8 +1161,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TransferFunction path: Util/ExifData.cs startLine: 4034 @@ -1187,8 +1187,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Software path: Util/ExifData.cs startLine: 4035 @@ -1213,8 +1213,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DateTime path: Util/ExifData.cs startLine: 4036 @@ -1239,8 +1239,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Artist path: Util/ExifData.cs startLine: 4037 @@ -1265,8 +1265,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HostComputer path: Util/ExifData.cs startLine: 4038 @@ -1291,8 +1291,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Predictor path: Util/ExifData.cs startLine: 4039 @@ -1317,8 +1317,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WhitePoint path: Util/ExifData.cs startLine: 4040 @@ -1343,8 +1343,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PrimaryChromaticities path: Util/ExifData.cs startLine: 4041 @@ -1369,8 +1369,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorMap path: Util/ExifData.cs startLine: 4042 @@ -1395,8 +1395,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HalftoneHints path: Util/ExifData.cs startLine: 4043 @@ -1421,8 +1421,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TileWidth path: Util/ExifData.cs startLine: 4044 @@ -1447,8 +1447,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TileLength path: Util/ExifData.cs startLine: 4045 @@ -1473,8 +1473,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TileOffsets path: Util/ExifData.cs startLine: 4046 @@ -1499,8 +1499,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TileByteCounts path: Util/ExifData.cs startLine: 4047 @@ -1525,8 +1525,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InkSet path: Util/ExifData.cs startLine: 4048 @@ -1551,8 +1551,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InkNames path: Util/ExifData.cs startLine: 4049 @@ -1577,8 +1577,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NumberOfInks path: Util/ExifData.cs startLine: 4050 @@ -1603,8 +1603,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DotRange path: Util/ExifData.cs startLine: 4051 @@ -1629,8 +1629,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TargetPrinter path: Util/ExifData.cs startLine: 4052 @@ -1655,8 +1655,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExtraSamples path: Util/ExifData.cs startLine: 4053 @@ -1681,8 +1681,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SampleFormat path: Util/ExifData.cs startLine: 4054 @@ -1707,8 +1707,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SMinSampleValue path: Util/ExifData.cs startLine: 4055 @@ -1733,8 +1733,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SMaxSampleValue path: Util/ExifData.cs startLine: 4056 @@ -1759,8 +1759,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TransferRange path: Util/ExifData.cs startLine: 4057 @@ -1785,8 +1785,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: YCbCrCoefficients path: Util/ExifData.cs startLine: 4058 @@ -1811,8 +1811,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: YCbCrSubSampling path: Util/ExifData.cs startLine: 4059 @@ -1837,8 +1837,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: YCbCrPositioning path: Util/ExifData.cs startLine: 4060 @@ -1863,8 +1863,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReferenceBlackWhite path: Util/ExifData.cs startLine: 4061 @@ -1889,8 +1889,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XmpMetadata path: Util/ExifData.cs startLine: 4062 @@ -1915,8 +1915,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Copyright path: Util/ExifData.cs startLine: 4063 @@ -1941,8 +1941,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IptcMetadata path: Util/ExifData.cs startLine: 4064 @@ -1967,8 +1967,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExifIfdPointer path: Util/ExifData.cs startLine: 4065 @@ -1993,8 +1993,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsInfoIfdPointer path: Util/ExifData.cs startLine: 4066 @@ -2019,8 +2019,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XpTitle path: Util/ExifData.cs startLine: 4067 @@ -2045,8 +2045,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XpComment path: Util/ExifData.cs startLine: 4068 @@ -2071,8 +2071,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XpAuthor path: Util/ExifData.cs startLine: 4069 @@ -2097,8 +2097,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XpKeywords path: Util/ExifData.cs startLine: 4070 @@ -2123,8 +2123,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XpSubject path: Util/ExifData.cs startLine: 4071 @@ -2149,8 +2149,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Padding path: Util/ExifData.cs startLine: 4072 @@ -2175,8 +2175,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: JpegInterchangeFormat path: Util/ExifData.cs startLine: 4075 @@ -2201,8 +2201,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: JpegInterchangeFormatLength path: Util/ExifData.cs startLine: 4076 @@ -2227,8 +2227,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExposureTime path: Util/ExifData.cs startLine: 4079 @@ -2253,8 +2253,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FNumber path: Util/ExifData.cs startLine: 4080 @@ -2279,8 +2279,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExposureProgram path: Util/ExifData.cs startLine: 4081 @@ -2305,8 +2305,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SpectralSensitivity path: Util/ExifData.cs startLine: 4082 @@ -2331,8 +2331,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsoSpeedRatings path: Util/ExifData.cs startLine: 4083 @@ -2357,8 +2357,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PhotographicSensitivity path: Util/ExifData.cs startLine: 4084 @@ -2383,8 +2383,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Oecf path: Util/ExifData.cs startLine: 4085 @@ -2409,8 +2409,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SensitivityType path: Util/ExifData.cs startLine: 4086 @@ -2435,8 +2435,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StandardOutputSensitivity path: Util/ExifData.cs startLine: 4087 @@ -2461,8 +2461,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RecommendedExposureIndex path: Util/ExifData.cs startLine: 4088 @@ -2487,8 +2487,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsoSpeed path: Util/ExifData.cs startLine: 4089 @@ -2513,8 +2513,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsoSpeedLatitudeyyy path: Util/ExifData.cs startLine: 4090 @@ -2539,8 +2539,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsoSpeedLatitudezzz path: Util/ExifData.cs startLine: 4091 @@ -2565,8 +2565,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExifVersion path: Util/ExifData.cs startLine: 4092 @@ -2591,8 +2591,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DateTimeOriginal path: Util/ExifData.cs startLine: 4093 @@ -2617,8 +2617,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DateTimeDigitized path: Util/ExifData.cs startLine: 4094 @@ -2643,8 +2643,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OffsetTime path: Util/ExifData.cs startLine: 4095 @@ -2669,8 +2669,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OffsetTimeOriginal path: Util/ExifData.cs startLine: 4096 @@ -2695,8 +2695,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OffsetTimeDigitized path: Util/ExifData.cs startLine: 4097 @@ -2721,8 +2721,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComponentsConfiguration path: Util/ExifData.cs startLine: 4098 @@ -2747,8 +2747,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CompressedBitsPerPixel path: Util/ExifData.cs startLine: 4099 @@ -2773,8 +2773,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShutterSpeedValue path: Util/ExifData.cs startLine: 4100 @@ -2799,8 +2799,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ApertureValue path: Util/ExifData.cs startLine: 4101 @@ -2825,8 +2825,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BrightnessValue path: Util/ExifData.cs startLine: 4102 @@ -2851,8 +2851,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExposureBiasValue path: Util/ExifData.cs startLine: 4103 @@ -2877,8 +2877,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxApertureValue path: Util/ExifData.cs startLine: 4104 @@ -2903,8 +2903,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SubjectDistance path: Util/ExifData.cs startLine: 4105 @@ -2929,8 +2929,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MeteringMode path: Util/ExifData.cs startLine: 4106 @@ -2955,8 +2955,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LightSource path: Util/ExifData.cs startLine: 4107 @@ -2981,8 +2981,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Flash path: Util/ExifData.cs startLine: 4108 @@ -3007,8 +3007,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FocalLength path: Util/ExifData.cs startLine: 4109 @@ -3033,8 +3033,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SubjectArea path: Util/ExifData.cs startLine: 4110 @@ -3059,8 +3059,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MakerNote path: Util/ExifData.cs startLine: 4111 @@ -3085,8 +3085,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UserComment path: Util/ExifData.cs startLine: 4112 @@ -3111,8 +3111,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SubsecTime path: Util/ExifData.cs startLine: 4113 @@ -3137,8 +3137,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SubsecTimeOriginal path: Util/ExifData.cs startLine: 4114 @@ -3163,8 +3163,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SubsecTimeDigitized path: Util/ExifData.cs startLine: 4115 @@ -3189,8 +3189,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FlashPixVersion path: Util/ExifData.cs startLine: 4116 @@ -3215,8 +3215,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorSpace path: Util/ExifData.cs startLine: 4117 @@ -3241,8 +3241,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PixelXDimension path: Util/ExifData.cs startLine: 4118 @@ -3267,8 +3267,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PixelYDimension path: Util/ExifData.cs startLine: 4119 @@ -3293,8 +3293,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RelatedSoundFile path: Util/ExifData.cs startLine: 4120 @@ -3319,8 +3319,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InteroperabilityIfdPointer path: Util/ExifData.cs startLine: 4121 @@ -3345,8 +3345,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FlashEnergy path: Util/ExifData.cs startLine: 4122 @@ -3371,8 +3371,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SpatialFrequencyResponse path: Util/ExifData.cs startLine: 4123 @@ -3397,8 +3397,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FocalPlaneXResolution path: Util/ExifData.cs startLine: 4124 @@ -3423,8 +3423,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FocalPlaneYResolution path: Util/ExifData.cs startLine: 4125 @@ -3449,8 +3449,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FocalPlaneResolutionUnit path: Util/ExifData.cs startLine: 4126 @@ -3475,8 +3475,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SubjectLocation path: Util/ExifData.cs startLine: 4127 @@ -3501,8 +3501,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExposureIndex path: Util/ExifData.cs startLine: 4128 @@ -3527,8 +3527,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SensingMethod path: Util/ExifData.cs startLine: 4129 @@ -3553,8 +3553,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FileSource path: Util/ExifData.cs startLine: 4130 @@ -3579,8 +3579,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SceneType path: Util/ExifData.cs startLine: 4131 @@ -3605,8 +3605,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CfaPattern path: Util/ExifData.cs startLine: 4132 @@ -3631,8 +3631,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CustomRendered path: Util/ExifData.cs startLine: 4133 @@ -3657,8 +3657,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExposureMode path: Util/ExifData.cs startLine: 4134 @@ -3683,8 +3683,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WhiteBalance path: Util/ExifData.cs startLine: 4135 @@ -3709,8 +3709,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DigitalZoomRatio path: Util/ExifData.cs startLine: 4136 @@ -3735,8 +3735,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FocalLengthIn35mmFilm path: Util/ExifData.cs startLine: 4137 @@ -3761,8 +3761,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SceneCaptureType path: Util/ExifData.cs startLine: 4138 @@ -3787,8 +3787,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GainControl path: Util/ExifData.cs startLine: 4139 @@ -3813,8 +3813,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Contrast path: Util/ExifData.cs startLine: 4140 @@ -3839,8 +3839,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Saturation path: Util/ExifData.cs startLine: 4141 @@ -3865,8 +3865,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sharpness path: Util/ExifData.cs startLine: 4142 @@ -3891,8 +3891,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DeviceSettingDescription path: Util/ExifData.cs startLine: 4143 @@ -3917,8 +3917,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SubjectDistanceRange path: Util/ExifData.cs startLine: 4144 @@ -3943,8 +3943,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ImageUniqueId path: Util/ExifData.cs startLine: 4145 @@ -3969,8 +3969,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CameraOwnerName path: Util/ExifData.cs startLine: 4146 @@ -3995,8 +3995,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BodySerialNumber path: Util/ExifData.cs startLine: 4147 @@ -4021,8 +4021,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LensSpecification path: Util/ExifData.cs startLine: 4148 @@ -4047,8 +4047,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LensMake path: Util/ExifData.cs startLine: 4149 @@ -4073,8 +4073,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LensModel path: Util/ExifData.cs startLine: 4150 @@ -4099,8 +4099,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LensSerialNumber path: Util/ExifData.cs startLine: 4151 @@ -4125,8 +4125,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OffsetSchema path: Util/ExifData.cs startLine: 4152 @@ -4151,8 +4151,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsVersionId path: Util/ExifData.cs startLine: 4155 @@ -4177,8 +4177,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsLatitudeRef path: Util/ExifData.cs startLine: 4156 @@ -4203,8 +4203,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsLatitude path: Util/ExifData.cs startLine: 4157 @@ -4229,8 +4229,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsLongitudeRef path: Util/ExifData.cs startLine: 4158 @@ -4255,8 +4255,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsLongitude path: Util/ExifData.cs startLine: 4159 @@ -4281,8 +4281,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsAltitudeRef path: Util/ExifData.cs startLine: 4160 @@ -4307,8 +4307,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsAltitude path: Util/ExifData.cs startLine: 4161 @@ -4333,8 +4333,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsTimestamp path: Util/ExifData.cs startLine: 4162 @@ -4359,8 +4359,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsSatellites path: Util/ExifData.cs startLine: 4163 @@ -4385,8 +4385,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsStatus path: Util/ExifData.cs startLine: 4164 @@ -4411,8 +4411,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsMeasureMode path: Util/ExifData.cs startLine: 4165 @@ -4437,8 +4437,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsDop path: Util/ExifData.cs startLine: 4166 @@ -4463,8 +4463,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsSpeedRef path: Util/ExifData.cs startLine: 4167 @@ -4489,8 +4489,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsSpeed path: Util/ExifData.cs startLine: 4168 @@ -4515,8 +4515,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsTrackRef path: Util/ExifData.cs startLine: 4169 @@ -4541,8 +4541,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsTrack path: Util/ExifData.cs startLine: 4170 @@ -4567,8 +4567,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsImgDirectionRef path: Util/ExifData.cs startLine: 4171 @@ -4593,8 +4593,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsImgDirection path: Util/ExifData.cs startLine: 4172 @@ -4619,8 +4619,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsMapDatum path: Util/ExifData.cs startLine: 4173 @@ -4645,8 +4645,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsDestLatitudeRef path: Util/ExifData.cs startLine: 4174 @@ -4671,8 +4671,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsDestLatitude path: Util/ExifData.cs startLine: 4175 @@ -4697,8 +4697,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsDestLongitudeRef path: Util/ExifData.cs startLine: 4176 @@ -4723,8 +4723,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsDestLongitude path: Util/ExifData.cs startLine: 4177 @@ -4749,8 +4749,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsDestBearingRef path: Util/ExifData.cs startLine: 4178 @@ -4775,8 +4775,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsDestBearing path: Util/ExifData.cs startLine: 4179 @@ -4801,8 +4801,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsDestDistanceRef path: Util/ExifData.cs startLine: 4180 @@ -4827,8 +4827,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsDestDistance path: Util/ExifData.cs startLine: 4181 @@ -4853,8 +4853,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsProcessingMethod path: Util/ExifData.cs startLine: 4182 @@ -4879,8 +4879,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsAreaInformation path: Util/ExifData.cs startLine: 4183 @@ -4905,8 +4905,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsDateStamp path: Util/ExifData.cs startLine: 4184 @@ -4931,8 +4931,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsDifferential path: Util/ExifData.cs startLine: 4185 @@ -4957,8 +4957,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GpsHPositioningError path: Util/ExifData.cs startLine: 4186 @@ -4983,8 +4983,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InteroperabilityIndex path: Util/ExifData.cs startLine: 4189 @@ -5009,8 +5009,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InteroperabilityVersion path: Util/ExifData.cs startLine: 4190 diff --git a/api/CompactExifLib.ExifTagType.yml b/api/CompactExifLib.ExifTagType.yml index 16a00c49..2bfd22ee 100644 --- a/api/CompactExifLib.ExifTagType.yml +++ b/api/CompactExifLib.ExifTagType.yml @@ -27,8 +27,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExifTagType path: Util/ExifData.cs startLine: 4195 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Byte path: Util/ExifData.cs startLine: 4197 @@ -78,8 +78,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Ascii path: Util/ExifData.cs startLine: 4198 @@ -104,8 +104,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UShort path: Util/ExifData.cs startLine: 4199 @@ -130,8 +130,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ULong path: Util/ExifData.cs startLine: 4200 @@ -156,8 +156,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: URational path: Util/ExifData.cs startLine: 4201 @@ -182,8 +182,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SByte path: Util/ExifData.cs startLine: 4202 @@ -208,8 +208,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Undefined path: Util/ExifData.cs startLine: 4203 @@ -234,8 +234,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SShort path: Util/ExifData.cs startLine: 4204 @@ -260,8 +260,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SLong path: Util/ExifData.cs startLine: 4205 @@ -286,8 +286,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SRational path: Util/ExifData.cs startLine: 4206 @@ -312,8 +312,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Float path: Util/ExifData.cs startLine: 4207 @@ -338,8 +338,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Double path: Util/ExifData.cs startLine: 4208 diff --git a/api/CompactExifLib.GeoCoordinate.yml b/api/CompactExifLib.GeoCoordinate.yml index a7ab3454..a64ab4a2 100644 --- a/api/CompactExifLib.GeoCoordinate.yml +++ b/api/CompactExifLib.GeoCoordinate.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GeoCoordinate path: Util/ExifData.cs startLine: 4373 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Degree path: Util/ExifData.cs startLine: 4375 @@ -80,8 +80,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Minute path: Util/ExifData.cs startLine: 4376 @@ -107,8 +107,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Second path: Util/ExifData.cs startLine: 4377 @@ -134,8 +134,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CardinalPoint path: Util/ExifData.cs startLine: 4378 @@ -161,8 +161,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToDecimal path: Util/ExifData.cs startLine: 4381 @@ -192,8 +192,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromDecimal path: Util/ExifData.cs startLine: 4392 diff --git a/api/CompactExifLib.ImageFileBlock.yml b/api/CompactExifLib.ImageFileBlock.yml index f8fe83e7..45d1e3ac 100644 --- a/api/CompactExifLib.ImageFileBlock.yml +++ b/api/CompactExifLib.ImageFileBlock.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ImageFileBlock path: Util/ExifData.cs startLine: 4446 @@ -47,8 +47,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Unknown path: Util/ExifData.cs startLine: 4449 @@ -73,8 +73,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Exif path: Util/ExifData.cs startLine: 4450 @@ -99,8 +99,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Iptc path: Util/ExifData.cs startLine: 4451 @@ -125,8 +125,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Xmp path: Util/ExifData.cs startLine: 4452 @@ -151,8 +151,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: JpegComment path: Util/ExifData.cs startLine: 4453 @@ -177,8 +177,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PngMetaData path: Util/ExifData.cs startLine: 4454 @@ -203,8 +203,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PngDateChanged path: Util/ExifData.cs startLine: 4455 diff --git a/api/CompactExifLib.ImageType.yml b/api/CompactExifLib.ImageType.yml index dbb76944..6f70398b 100644 --- a/api/CompactExifLib.ImageType.yml +++ b/api/CompactExifLib.ImageType.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ImageType path: Util/ExifData.cs startLine: 4458 @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Unknown path: Util/ExifData.cs startLine: 4458 @@ -70,8 +70,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Jpeg path: Util/ExifData.cs startLine: 4458 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Tiff path: Util/ExifData.cs startLine: 4458 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Png path: Util/ExifData.cs startLine: 4458 diff --git a/api/CompactExifLib.StrCoding.yml b/api/CompactExifLib.StrCoding.yml index 829f2e1d..eacaeb13 100644 --- a/api/CompactExifLib.StrCoding.yml +++ b/api/CompactExifLib.StrCoding.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StrCoding path: Util/ExifData.cs startLine: 4223 @@ -48,8 +48,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Utf8 path: Util/ExifData.cs startLine: 4225 @@ -74,8 +74,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UsAscii path: Util/ExifData.cs startLine: 4226 @@ -100,8 +100,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WestEuropeanWin path: Util/ExifData.cs startLine: 4227 @@ -126,8 +126,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UsAscii_Undef path: Util/ExifData.cs startLine: 4228 @@ -152,8 +152,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Utf16Le_Byte path: Util/ExifData.cs startLine: 4229 @@ -178,8 +178,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IdCode_Utf16 path: Util/ExifData.cs startLine: 4230 @@ -204,8 +204,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IdCode_UsAscii path: Util/ExifData.cs startLine: 4231 @@ -230,8 +230,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IdCode_WestEu path: Util/ExifData.cs startLine: 4232 diff --git a/api/CompactExifLib.StrCodingFormat.yml b/api/CompactExifLib.StrCodingFormat.yml index fd3d4a7f..a6b03522 100644 --- a/api/CompactExifLib.StrCodingFormat.yml +++ b/api/CompactExifLib.StrCodingFormat.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StrCodingFormat path: Util/ExifData.cs startLine: 4212 @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TypeAscii path: Util/ExifData.cs startLine: 4214 @@ -70,8 +70,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TypeUndefined path: Util/ExifData.cs startLine: 4215 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TypeByte path: Util/ExifData.cs startLine: 4216 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Util/ExifData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TypeUndefinedWithIdCode path: Util/ExifData.cs startLine: 4217 diff --git a/api/ProperVersion.SemVer.yml b/api/ProperVersion.SemVer.yml index 2143db64..208af4c2 100644 --- a/api/ProperVersion.SemVer.yml +++ b/api/ProperVersion.SemVer.yml @@ -40,8 +40,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SemVer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SemVer path: Datastructures/SemVer.cs startLine: 10 @@ -80,8 +80,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SemVer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Major path: Datastructures/SemVer.cs startLine: 12 @@ -109,8 +109,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SemVer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Minor path: Datastructures/SemVer.cs startLine: 13 @@ -138,8 +138,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SemVer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Patch path: Datastructures/SemVer.cs startLine: 14 @@ -167,8 +167,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SemVer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreReleaseIdentifiers path: Datastructures/SemVer.cs startLine: 16 @@ -196,8 +196,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SemVer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BuildMetadataIdentifiers path: Datastructures/SemVer.cs startLine: 17 @@ -225,8 +225,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SemVer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreRelease path: Datastructures/SemVer.cs startLine: 19 @@ -254,8 +254,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SemVer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BuildMetadata path: Datastructures/SemVer.cs startLine: 20 @@ -283,8 +283,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SemVer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/SemVer.cs startLine: 23 @@ -319,8 +319,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SemVer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/SemVer.cs startLine: 27 @@ -359,8 +359,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SemVer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/SemVer.cs startLine: 33 @@ -399,8 +399,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SemVer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Parse path: Datastructures/SemVer.cs startLine: 92 @@ -445,8 +445,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SemVer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryParse path: Datastructures/SemVer.cs startLine: 109 @@ -497,8 +497,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SemVer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryParse path: Datastructures/SemVer.cs startLine: 127 @@ -555,8 +555,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SemVer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Datastructures/SemVer.cs startLine: 234 @@ -587,8 +587,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SemVer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Equality path: Datastructures/SemVer.cs startLine: 248 @@ -623,8 +623,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SemVer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Inequality path: Datastructures/SemVer.cs startLine: 250 @@ -659,8 +659,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SemVer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_GreaterThan path: Datastructures/SemVer.cs startLine: 258 @@ -695,8 +695,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SemVer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_LessThan path: Datastructures/SemVer.cs startLine: 260 @@ -731,8 +731,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SemVer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_GreaterThanOrEqual path: Datastructures/SemVer.cs startLine: 262 @@ -767,8 +767,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SemVer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_LessThanOrEqual path: Datastructures/SemVer.cs startLine: 264 @@ -803,8 +803,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SemVer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CompareTo path: Datastructures/SemVer.cs startLine: 268 @@ -843,8 +843,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SemVer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Compare path: Datastructures/SemVer.cs startLine: 270 @@ -876,8 +876,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SemVer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Datastructures/SemVer.cs startLine: 319 @@ -913,8 +913,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SemVer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Datastructures/SemVer.cs startLine: 324 @@ -952,8 +952,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SemVer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHashCode path: Datastructures/SemVer.cs startLine: 327 diff --git a/api/Vintagestory.API.Client.AvailableCodec.yml b/api/Vintagestory.API.Client.AvailableCodec.yml index e970598a..ec8cd5e4 100644 --- a/api/Vintagestory.API.Client.AvailableCodec.yml +++ b/api/Vintagestory.API.Client.AvailableCodec.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IAviWriter.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AvailableCodec path: Client/Render/IAviWriter.cs startLine: 2 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IAviWriter.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Name path: Client/Render/IAviWriter.cs startLine: 4 @@ -79,8 +79,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IAviWriter.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Client/Render/IAviWriter.cs startLine: 5 diff --git a/api/Vintagestory.API.Client.BakedCompositeTexture.yml b/api/Vintagestory.API.Client.BakedCompositeTexture.yml index 0561b97b..a5d45b11 100644 --- a/api/Vintagestory.API.Client.BakedCompositeTexture.yml +++ b/api/Vintagestory.API.Client.BakedCompositeTexture.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BakedCompositeTexture path: Client/Texture/CompositeTexture.cs startLine: 435 @@ -58,8 +58,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TextureSubId path: Client/Texture/CompositeTexture.cs startLine: 440 @@ -87,8 +87,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BakedName path: Client/Texture/CompositeTexture.cs startLine: 445 @@ -116,8 +116,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TextureFilenames path: Client/Texture/CompositeTexture.cs startLine: 450 @@ -145,8 +145,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BakedVariants path: Client/Texture/CompositeTexture.cs startLine: 455 @@ -174,8 +174,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BakedTiles path: Client/Texture/CompositeTexture.cs startLine: 460 @@ -203,8 +203,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TilesWidth path: Client/Texture/CompositeTexture.cs startLine: 462 diff --git a/api/Vintagestory.API.Client.BlendedOverlayTexture.yml b/api/Vintagestory.API.Client.BlendedOverlayTexture.yml index 463271dd..cb45908d 100644 --- a/api/Vintagestory.API.Client.BlendedOverlayTexture.yml +++ b/api/Vintagestory.API.Client.BlendedOverlayTexture.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlendedOverlayTexture path: Client/Texture/CompositeTexture.cs startLine: 9 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Base path: Client/Texture/CompositeTexture.cs startLine: 11 @@ -80,8 +80,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlendMode path: Client/Texture/CompositeTexture.cs startLine: 12 @@ -107,8 +107,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Client/Texture/CompositeTexture.cs startLine: 14 diff --git a/api/Vintagestory.API.Client.BlockChangedDelegate.yml b/api/Vintagestory.API.Client.BlockChangedDelegate.yml index a43402b5..3dc04237 100644 --- a/api/Vintagestory.API.Client.BlockChangedDelegate.yml +++ b/api/Vintagestory.API.Client.BlockChangedDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockChangedDelegate path: Client/API/IClientEventAPI.cs startLine: 26 diff --git a/api/Vintagestory.API.Client.CairoFont.yml b/api/Vintagestory.API.Client.CairoFont.yml index 4f72eec1..050a7484 100644 --- a/api/Vintagestory.API.Client.CairoFont.yml +++ b/api/Vintagestory.API.Client.CairoFont.yml @@ -48,8 +48,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CairoFont path: Client/UI/CairoFont.cs startLine: 9 @@ -94,8 +94,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FontMeasuringContext path: Client/UI/CairoFont.cs startLine: 15 @@ -123,8 +123,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderTwice path: Client/UI/CairoFont.cs startLine: 20 @@ -152,8 +152,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LineHeightMultiplier path: Client/UI/CairoFont.cs startLine: 22 @@ -179,8 +179,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Slant path: Client/UI/CairoFont.cs startLine: 26 @@ -206,8 +206,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Orientation path: Client/UI/CairoFont.cs startLine: 28 @@ -233,8 +233,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/CairoFont.cs startLine: 39 @@ -264,8 +264,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/CairoFont.cs startLine: 47 @@ -299,8 +299,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/CairoFont.cs startLine: 62 @@ -337,8 +337,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithLineHeightMultiplier path: Client/UI/CairoFont.cs startLine: 68 @@ -371,8 +371,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithStroke path: Client/UI/CairoFont.cs startLine: 74 @@ -407,8 +407,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/CairoFont.cs startLine: 88 @@ -451,8 +451,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AutoFontSize path: Client/UI/CairoFont.cs startLine: 103 @@ -492,8 +492,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AutoBoxSize path: Client/UI/CairoFont.cs startLine: 120 @@ -533,8 +533,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithColor path: Client/UI/CairoFont.cs startLine: 172 @@ -570,8 +570,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithWeight path: Client/UI/CairoFont.cs startLine: 182 @@ -604,8 +604,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithRenderTwice path: Client/UI/CairoFont.cs startLine: 191 @@ -634,8 +634,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithSlant path: Client/UI/CairoFont.cs startLine: 197 @@ -665,8 +665,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithFont path: Client/UI/CairoFont.cs startLine: 203 @@ -699,8 +699,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetupContext path: Client/UI/CairoFont.cs startLine: 213 @@ -731,8 +731,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetFontExtents path: Client/UI/CairoFont.cs startLine: 240 @@ -762,8 +762,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetTextExtents path: Client/UI/CairoFont.cs startLine: 251 @@ -800,8 +800,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Client/UI/CairoFont.cs startLine: 261 @@ -831,8 +831,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithFontSize path: Client/UI/CairoFont.cs startLine: 276 @@ -868,8 +868,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ButtonText path: Client/UI/CairoFont.cs startLine: 286 @@ -899,8 +899,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ButtonPressedText path: Client/UI/CairoFont.cs startLine: 302 @@ -930,8 +930,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithOrientation path: Client/UI/CairoFont.cs startLine: 314 @@ -961,8 +961,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TextInput path: Client/UI/CairoFont.cs startLine: 324 @@ -992,8 +992,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SmallTextInput path: Client/UI/CairoFont.cs startLine: 338 @@ -1023,8 +1023,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WhiteMediumText path: Client/UI/CairoFont.cs startLine: 354 @@ -1054,8 +1054,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WhiteSmallishText path: Client/UI/CairoFont.cs startLine: 368 @@ -1085,8 +1085,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WhiteSmallText path: Client/UI/CairoFont.cs startLine: 382 @@ -1116,8 +1116,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WhiteDetailText path: Client/UI/CairoFont.cs startLine: 397 @@ -1147,8 +1147,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/CairoFont.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/CairoFont.cs startLine: 408 diff --git a/api/Vintagestory.API.Client.CanClickSlotDelegate.yml b/api/Vintagestory.API.Client.CanClickSlotDelegate.yml index 8e1bb6ef..8c85538b 100644 --- a/api/Vintagestory.API.Client.CanClickSlotDelegate.yml +++ b/api/Vintagestory.API.Client.CanClickSlotDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanClickSlotDelegate path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 12 diff --git a/api/Vintagestory.API.Client.CaveMusicTrack.yml b/api/Vintagestory.API.Client.CaveMusicTrack.yml index 463576cf..d3b7696c 100644 --- a/api/Vintagestory.API.Client.CaveMusicTrack.yml +++ b/api/Vintagestory.API.Client.CaveMusicTrack.yml @@ -28,8 +28,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/CaveMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CaveMusicTrack path: Client/Audio/CaveMusicTrack.cs startLine: 21 @@ -98,8 +98,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/CaveMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldPlayCaveMusic path: Client/Audio/CaveMusicTrack.cs startLine: 42 @@ -125,8 +125,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/CaveMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Name path: Client/Audio/CaveMusicTrack.cs startLine: 47 @@ -158,8 +158,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/CaveMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsActive path: Client/Audio/CaveMusicTrack.cs startLine: 74 @@ -191,8 +191,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/CaveMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PositionString path: Client/Audio/CaveMusicTrack.cs startLine: 94 @@ -223,8 +223,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/CaveMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartPriority path: Client/Audio/CaveMusicTrack.cs startLine: 96 @@ -256,8 +256,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/CaveMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Initialize path: Client/Audio/CaveMusicTrack.cs startLine: 104 @@ -296,8 +296,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/CaveMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldPlay path: Client/Audio/CaveMusicTrack.cs startLine: 130 @@ -339,8 +339,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/CaveMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeginPlay path: Client/Audio/CaveMusicTrack.cs startLine: 142 @@ -373,8 +373,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/CaveMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ContinuePlay path: Client/Audio/CaveMusicTrack.cs startLine: 153 @@ -416,8 +416,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/CaveMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FadeOut path: Client/Audio/CaveMusicTrack.cs startLine: 248 @@ -456,8 +456,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/CaveMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UpdateVolume path: Client/Audio/CaveMusicTrack.cs startLine: 276 @@ -486,8 +486,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/CaveMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FastForward path: Client/Audio/CaveMusicTrack.cs startLine: 285 @@ -521,8 +521,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/CaveMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeginSort path: Client/Audio/CaveMusicTrack.cs startLine: 290 diff --git a/api/Vintagestory.API.Client.ChatLineDelegate.yml b/api/Vintagestory.API.Client.ChatLineDelegate.yml index 8ced2810..b8ebb536 100644 --- a/api/Vintagestory.API.Client.ChatLineDelegate.yml +++ b/api/Vintagestory.API.Client.ChatLineDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChatLineDelegate path: Client/API/IClientEventAPI.cs startLine: 18 diff --git a/api/Vintagestory.API.Client.ClearFloatTextComponent.yml b/api/Vintagestory.API.Client.ClearFloatTextComponent.yml index cde00f25..878981a1 100644 --- a/api/Vintagestory.API.Client.ClearFloatTextComponent.yml +++ b/api/Vintagestory.API.Client.ClearFloatTextComponent.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/ClearFloatTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClearFloatTextComponent path: Client/UI/Elements/Impl/Interactive/Text/Richtext/ClearFloatTextComponent.cs startLine: 4 @@ -78,8 +78,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/ClearFloatTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Text/Richtext/ClearFloatTextComponent.cs startLine: 7 @@ -112,8 +112,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/ClearFloatTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CalcBounds path: Client/UI/Elements/Impl/Interactive/Text/Richtext/ClearFloatTextComponent.cs startLine: 13 @@ -163,8 +163,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/ClearFloatTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Interactive/Text/Richtext/ClearFloatTextComponent.cs startLine: 39 @@ -199,8 +199,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/ClearFloatTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/Text/Richtext/ClearFloatTextComponent.cs startLine: 51 diff --git a/api/Vintagestory.API.Client.ClientChatLineDelegate.yml b/api/Vintagestory.API.Client.ClientChatLineDelegate.yml index 0771740b..96cf6437 100644 --- a/api/Vintagestory.API.Client.ClientChatLineDelegate.yml +++ b/api/Vintagestory.API.Client.ClientChatLineDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClientChatLineDelegate path: Client/API/IClientEventAPI.cs startLine: 19 diff --git a/api/Vintagestory.API.Client.ColorMapData.yml b/api/Vintagestory.API.Client.ColorMapData.yml index b4272473..53f2d3b5 100644 --- a/api/Vintagestory.API.Client.ColorMapData.yml +++ b/api/Vintagestory.API.Client.ColorMapData.yml @@ -26,8 +26,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/ColorMapData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorMapData path: Client/Render/ColorMapData.cs startLine: 2 @@ -58,8 +58,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/ColorMapData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Value path: Client/Render/ColorMapData.cs startLine: 8 @@ -85,8 +85,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/ColorMapData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SeasonMapIndex path: Client/Render/ColorMapData.cs startLine: 10 @@ -114,8 +114,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/ColorMapData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClimateMapIndex path: Client/Render/ColorMapData.cs startLine: 11 @@ -143,8 +143,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/ColorMapData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Temperature path: Client/Render/ColorMapData.cs startLine: 12 @@ -172,8 +172,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/ColorMapData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rainfall path: Client/Render/ColorMapData.cs startLine: 13 @@ -201,8 +201,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/ColorMapData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FrostableBit path: Client/Render/ColorMapData.cs startLine: 15 @@ -230,8 +230,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/ColorMapData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Render/ColorMapData.cs startLine: 18 @@ -262,8 +262,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/ColorMapData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Render/ColorMapData.cs startLine: 23 @@ -302,8 +302,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/ColorMapData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Render/ColorMapData.cs startLine: 28 @@ -342,8 +342,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/ColorMapData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromValues path: Client/Render/ColorMapData.cs startLine: 33 @@ -384,8 +384,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/ColorMapData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromValues path: Client/Render/ColorMapData.cs startLine: 38 diff --git a/api/Vintagestory.API.Client.CompositeTexture.yml b/api/Vintagestory.API.Client.CompositeTexture.yml index 57f162c4..b889dc61 100644 --- a/api/Vintagestory.API.Client.CompositeTexture.yml +++ b/api/Vintagestory.API.Client.CompositeTexture.yml @@ -38,8 +38,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CompositeTexture path: Client/Texture/CompositeTexture.cs startLine: 23 @@ -74,8 +74,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AlphaSeparator path: Client/Texture/CompositeTexture.cs startLine: 25 @@ -101,8 +101,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AlphaSeparatorRegexSearch path: Client/Texture/CompositeTexture.cs startLine: 26 @@ -128,8 +128,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Base path: Client/Texture/CompositeTexture.cs startLine: 31 @@ -157,8 +157,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Overlays path: Client/Texture/CompositeTexture.cs startLine: 36 @@ -188,8 +188,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlendedOverlays path: Client/Texture/CompositeTexture.cs startLine: 47 @@ -217,8 +217,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Alternates path: Client/Texture/CompositeTexture.cs startLine: 52 @@ -246,8 +246,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Tiles path: Client/Texture/CompositeTexture.cs startLine: 54 @@ -273,8 +273,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TilesWidth path: Client/Texture/CompositeTexture.cs startLine: 55 @@ -300,8 +300,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Baked path: Client/Texture/CompositeTexture.cs startLine: 60 @@ -329,8 +329,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rotation path: Client/Texture/CompositeTexture.cs startLine: 65 @@ -358,8 +358,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Alpha path: Client/Texture/CompositeTexture.cs startLine: 70 @@ -387,8 +387,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: basicTexturesCache path: Client/Texture/CompositeTexture.cs startLine: 73 @@ -424,8 +424,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: wildcardsCache path: Client/Texture/CompositeTexture.cs startLine: 75 @@ -461,8 +461,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WildCardNoFiles path: Client/Texture/CompositeTexture.cs startLine: 77 @@ -488,8 +488,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AnyWildCardNoFiles path: Client/Texture/CompositeTexture.cs startLine: 79 @@ -517,8 +517,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Texture/CompositeTexture.cs startLine: 97 @@ -548,8 +548,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Texture/CompositeTexture.cs startLine: 107 @@ -583,8 +583,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Client/Texture/CompositeTexture.cs startLine: 118 @@ -614,8 +614,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsBasic path: Client/Texture/CompositeTexture.cs startLine: 198 @@ -645,8 +645,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Bake path: Client/Texture/CompositeTexture.cs startLine: 208 @@ -679,8 +679,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RuntimeBake path: Client/Texture/CompositeTexture.cs startLine: 219 @@ -714,8 +714,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Client/Texture/CompositeTexture.cs startLine: 416 @@ -746,8 +746,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/CompositeTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FillPlaceholder path: Client/Texture/CompositeTexture.cs startLine: 420 diff --git a/api/Vintagestory.API.Client.ConfigItem.yml b/api/Vintagestory.API.Client.ConfigItem.yml index 5198137c..01dd964f 100644 --- a/api/Vintagestory.API.Client.ConfigItem.yml +++ b/api/Vintagestory.API.Client.ConfigItem.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ConfigItem path: Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs startLine: 16 @@ -60,8 +60,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Type path: Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs startLine: 21 @@ -89,8 +89,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Key path: Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs startLine: 26 @@ -118,8 +118,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Value path: Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs startLine: 31 @@ -147,8 +147,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs startLine: 36 @@ -176,8 +176,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: error path: Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs startLine: 41 @@ -205,8 +205,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: posY path: Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs startLine: 46 @@ -234,8 +234,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: height path: Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs startLine: 51 @@ -263,8 +263,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Data path: Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs startLine: 54 diff --git a/api/Vintagestory.API.Client.ConfigItemClickDelegate.yml b/api/Vintagestory.API.Client.ConfigItemClickDelegate.yml index ee9bd6d9..c44fc0af 100644 --- a/api/Vintagestory.API.Client.ConfigItemClickDelegate.yml +++ b/api/Vintagestory.API.Client.ConfigItemClickDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ConfigItemClickDelegate path: Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs startLine: 57 diff --git a/api/Vintagestory.API.Client.ContainedTextureSource.yml b/api/Vintagestory.API.Client.ContainedTextureSource.yml index 1727f3ad..6b8a4c5f 100644 --- a/api/Vintagestory.API.Client.ContainedTextureSource.yml +++ b/api/Vintagestory.API.Client.ContainedTextureSource.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/ITextureSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ContainedTextureSource path: Client/Texture/ITextureSource.cs startLine: 23 @@ -59,8 +59,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/ITextureSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AtlasSize path: Client/Texture/ITextureSource.cs startLine: 27 @@ -92,8 +92,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/ITextureSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Textures path: Client/Texture/ITextureSource.cs startLine: 29 @@ -119,8 +119,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/ITextureSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Texture/ITextureSource.cs startLine: 32 @@ -157,8 +157,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/ITextureSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Client/Texture/ITextureSource.cs startLine: 40 @@ -194,8 +194,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/ITextureSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: getOrCreateTexPos path: Client/Texture/ITextureSource.cs startLine: 48 diff --git a/api/Vintagestory.API.Client.ContinousParticleSpawnTaskDelegate.yml b/api/Vintagestory.API.Client.ContinousParticleSpawnTaskDelegate.yml index 83ecbb7b..96b0370c 100644 --- a/api/Vintagestory.API.Client.ContinousParticleSpawnTaskDelegate.yml +++ b/api/Vintagestory.API.Client.ContinousParticleSpawnTaskDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ContinousParticleSpawnTaskDelegate path: Client/API/IClientEventAPI.cs startLine: 60 diff --git a/api/Vintagestory.API.Client.CreateTextureDelegate.yml b/api/Vintagestory.API.Client.CreateTextureDelegate.yml index 510fe29c..9cebdc56 100644 --- a/api/Vintagestory.API.Client.CreateTextureDelegate.yml +++ b/api/Vintagestory.API.Client.CreateTextureDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITextureAtlasAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateTextureDelegate path: Client/API/ITextureAtlasAPI.cs startLine: 7 diff --git a/api/Vintagestory.API.Client.CubeMeshUtil.yml b/api/Vintagestory.API.Client.CubeMeshUtil.yml index 11495d6c..2ab11f00 100644 --- a/api/Vintagestory.API.Client.CubeMeshUtil.yml +++ b/api/Vintagestory.API.Client.CubeMeshUtil.yml @@ -33,8 +33,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CubeMeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CubeMeshUtil path: Client/Model/Mesh/CubeMeshUtil.cs startLine: 7 @@ -70,8 +70,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CubeMeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CloudSideShadings path: Client/Model/Mesh/CubeMeshUtil.cs startLine: 12 @@ -99,8 +99,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CubeMeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DefaultBlockSideShadings path: Client/Model/Mesh/CubeMeshUtil.cs startLine: 22 @@ -128,8 +128,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CubeMeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DefaultBlockSideShadingsByFacing path: Client/Model/Mesh/CubeMeshUtil.cs startLine: 32 @@ -157,8 +157,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CubeMeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CubeVertices path: Client/Model/Mesh/CubeMeshUtil.cs startLine: 45 @@ -186,8 +186,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CubeMeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CubeFaceIndices path: Client/Model/Mesh/CubeMeshUtil.cs startLine: 86 @@ -215,8 +215,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CubeMeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CubeUvCoords path: Client/Model/Mesh/CubeMeshUtil.cs startLine: 100 @@ -244,8 +244,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CubeMeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CubeVertexIndices path: Client/Model/Mesh/CubeMeshUtil.cs startLine: 141 @@ -273,8 +273,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CubeMeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BaseCubeVertexIndices path: Client/Model/Mesh/CubeMeshUtil.cs startLine: 154 @@ -302,8 +302,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CubeMeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCube path: Client/Model/Mesh/CubeMeshUtil.cs startLine: 164 @@ -333,8 +333,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CubeMeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetShadedCubeRGBA path: Client/Model/Mesh/CubeMeshUtil.cs startLine: 213 @@ -377,8 +377,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CubeMeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetShadedCubeRGBA path: Client/Model/Mesh/CubeMeshUtil.cs startLine: 236 @@ -418,8 +418,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CubeMeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCubeOnlyScaleXyz path: Client/Model/Mesh/CubeMeshUtil.cs startLine: 284 @@ -462,8 +462,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CubeMeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCube path: Client/Model/Mesh/CubeMeshUtil.cs startLine: 310 @@ -506,8 +506,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CubeMeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCube path: Client/Model/Mesh/CubeMeshUtil.cs startLine: 346 @@ -553,8 +553,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CubeMeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ScaleCubeMesh path: Client/Model/Mesh/CubeMeshUtil.cs startLine: 362 @@ -603,8 +603,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CubeMeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCubeFace path: Client/Model/Mesh/CubeMeshUtil.cs startLine: 425 @@ -638,8 +638,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CubeMeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCubeFace path: Client/Model/Mesh/CubeMeshUtil.cs startLine: 471 @@ -685,8 +685,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CubeMeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetXyzFacesAndPacketNormals path: Client/Model/Mesh/CubeMeshUtil.cs startLine: 496 diff --git a/api/Vintagestory.API.Client.CustomMeshDataPart-1.yml b/api/Vintagestory.API.Client.CustomMeshDataPart-1.yml index f3f180d2..28d06c44 100644 --- a/api/Vintagestory.API.Client.CustomMeshDataPart-1.yml +++ b/api/Vintagestory.API.Client.CustomMeshDataPart-1.yml @@ -35,8 +35,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CustomMeshDataPart path: Client/Model/Mesh/CustomMeshDataPart.cs startLine: 8 @@ -83,8 +83,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Values path: Client/Model/Mesh/CustomMeshDataPart.cs startLine: 16 @@ -114,8 +114,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Count path: Client/Model/Mesh/CustomMeshDataPart.cs startLine: 21 @@ -145,8 +145,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BufferSize path: Client/Model/Mesh/CustomMeshDataPart.cs startLine: 26 @@ -178,8 +178,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AllocationSize path: Client/Model/Mesh/CustomMeshDataPart.cs startLine: 31 @@ -211,8 +211,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InterleaveSizes path: Client/Model/Mesh/CustomMeshDataPart.cs startLine: 39 @@ -242,8 +242,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InterleaveStride path: Client/Model/Mesh/CustomMeshDataPart.cs startLine: 44 @@ -273,8 +273,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InterleaveOffsets path: Client/Model/Mesh/CustomMeshDataPart.cs startLine: 49 @@ -304,8 +304,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Instanced path: Client/Model/Mesh/CustomMeshDataPart.cs startLine: 54 @@ -335,8 +335,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StaticDraw path: Client/Model/Mesh/CustomMeshDataPart.cs startLine: 59 @@ -366,8 +366,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BaseOffset path: Client/Model/Mesh/CustomMeshDataPart.cs startLine: 64 @@ -397,8 +397,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Model/Mesh/CustomMeshDataPart.cs startLine: 69 @@ -428,8 +428,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Model/Mesh/CustomMeshDataPart.cs startLine: 77 @@ -463,8 +463,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GrowBuffer path: Client/Model/Mesh/CustomMeshDataPart.cs startLine: 85 @@ -498,8 +498,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Client/Model/Mesh/CustomMeshDataPart.cs startLine: 99 @@ -532,8 +532,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add4 path: Client/Model/Mesh/CustomMeshDataPart.cs startLine: 112 @@ -566,8 +566,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Client/Model/Mesh/CustomMeshDataPart.cs startLine: 131 @@ -601,8 +601,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetAllocationSize path: Client/Model/Mesh/CustomMeshDataPart.cs startLine: 148 @@ -638,8 +638,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AutoAllocationSize path: Client/Model/Mesh/CustomMeshDataPart.cs startLine: 157 @@ -668,8 +668,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetFrom path: Client/Model/Mesh/CustomMeshDataPart.cs startLine: 166 @@ -703,8 +703,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EmptyClone path: Client/Model/Mesh/CustomMeshDataPart.cs startLine: 196 diff --git a/api/Vintagestory.API.Client.CustomMeshDataPartByte.yml b/api/Vintagestory.API.Client.CustomMeshDataPartByte.yml index 1275d054..53a1d73b 100644 --- a/api/Vintagestory.API.Client.CustomMeshDataPartByte.yml +++ b/api/Vintagestory.API.Client.CustomMeshDataPartByte.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPartByte.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CustomMeshDataPartByte path: Client/Model/Mesh/CustomMeshDataPartByte.cs startLine: 12 @@ -77,8 +77,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPartByte.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Conversion path: Client/Model/Mesh/CustomMeshDataPartByte.cs startLine: 14 @@ -104,8 +104,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPartByte.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Model/Mesh/CustomMeshDataPartByte.cs startLine: 19 @@ -135,8 +135,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPartByte.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Model/Mesh/CustomMeshDataPartByte.cs startLine: 25 @@ -170,8 +170,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPartByte.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddBytes path: Client/Model/Mesh/CustomMeshDataPartByte.cs startLine: 31 @@ -205,8 +205,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPartByte.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Client/Model/Mesh/CustomMeshDataPartByte.cs startLine: 55 @@ -236,8 +236,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPartByte.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EmptyClone path: Client/Model/Mesh/CustomMeshDataPartByte.cs startLine: 63 diff --git a/api/Vintagestory.API.Client.CustomMeshDataPartFloat.yml b/api/Vintagestory.API.Client.CustomMeshDataPartFloat.yml index 4439dcbc..dcbbd050 100644 --- a/api/Vintagestory.API.Client.CustomMeshDataPartFloat.yml +++ b/api/Vintagestory.API.Client.CustomMeshDataPartFloat.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPartFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CustomMeshDataPartFloat path: Client/Model/Mesh/CustomMeshDataPartFloat.cs startLine: 5 @@ -75,8 +75,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPartFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Model/Mesh/CustomMeshDataPartFloat.cs startLine: 10 @@ -106,8 +106,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPartFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Model/Mesh/CustomMeshDataPartFloat.cs startLine: 16 @@ -141,8 +141,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPartFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Client/Model/Mesh/CustomMeshDataPartFloat.cs startLine: 22 @@ -172,8 +172,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPartFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EmptyClone path: Client/Model/Mesh/CustomMeshDataPartFloat.cs startLine: 29 diff --git a/api/Vintagestory.API.Client.CustomMeshDataPartInt.yml b/api/Vintagestory.API.Client.CustomMeshDataPartInt.yml index eb946657..49658b55 100644 --- a/api/Vintagestory.API.Client.CustomMeshDataPartInt.yml +++ b/api/Vintagestory.API.Client.CustomMeshDataPartInt.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPartInt.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CustomMeshDataPartInt path: Client/Model/Mesh/CustomMeshDataPartInt.cs startLine: 5 @@ -76,8 +76,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPartInt.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Model/Mesh/CustomMeshDataPartInt.cs startLine: 10 @@ -107,8 +107,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPartInt.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Model/Mesh/CustomMeshDataPartInt.cs startLine: 16 @@ -142,8 +142,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPartInt.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Conversion path: Client/Model/Mesh/CustomMeshDataPartInt.cs startLine: 18 @@ -169,8 +169,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPartInt.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Client/Model/Mesh/CustomMeshDataPartInt.cs startLine: 24 @@ -200,8 +200,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPartInt.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EmptyClone path: Client/Model/Mesh/CustomMeshDataPartInt.cs startLine: 31 diff --git a/api/Vintagestory.API.Client.CustomMeshDataPartShort.yml b/api/Vintagestory.API.Client.CustomMeshDataPartShort.yml index b997418f..5d46ca30 100644 --- a/api/Vintagestory.API.Client.CustomMeshDataPartShort.yml +++ b/api/Vintagestory.API.Client.CustomMeshDataPartShort.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPartShort.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CustomMeshDataPartShort path: Client/Model/Mesh/CustomMeshDataPartShort.cs startLine: 5 @@ -76,8 +76,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPartShort.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Conversion path: Client/Model/Mesh/CustomMeshDataPartShort.cs startLine: 7 @@ -103,8 +103,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPartShort.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Model/Mesh/CustomMeshDataPartShort.cs startLine: 12 @@ -134,8 +134,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPartShort.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Model/Mesh/CustomMeshDataPartShort.cs startLine: 18 @@ -169,8 +169,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPartShort.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Client/Model/Mesh/CustomMeshDataPartShort.cs startLine: 25 @@ -200,8 +200,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPartShort.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EmptyClone path: Client/Model/Mesh/CustomMeshDataPartShort.cs startLine: 32 diff --git a/api/Vintagestory.API.Client.DamagedPerceptionEffect.yml b/api/Vintagestory.API.Client.DamagedPerceptionEffect.yml index be74680f..bf40cc51 100644 --- a/api/Vintagestory.API.Client.DamagedPerceptionEffect.yml +++ b/api/Vintagestory.API.Client.DamagedPerceptionEffect.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/DamagedPerceptionEffect.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DamagedPerceptionEffect path: Client/Render/PerceptionEffects/DamagedPerceptionEffect.cs startLine: 6 @@ -63,8 +63,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/DamagedPerceptionEffect.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Render/PerceptionEffects/DamagedPerceptionEffect.cs startLine: 14 @@ -95,8 +95,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/DamagedPerceptionEffect.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnOwnPlayerDataReceived path: Client/Render/PerceptionEffects/DamagedPerceptionEffect.cs startLine: 19 @@ -126,8 +126,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/DamagedPerceptionEffect.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBeforeGameRender path: Client/Render/PerceptionEffects/DamagedPerceptionEffect.cs startLine: 46 diff --git a/api/Vintagestory.API.Client.DataConversion.yml b/api/Vintagestory.API.Client.DataConversion.yml index f69c37be..35a79026 100644 --- a/api/Vintagestory.API.Client.DataConversion.yml +++ b/api/Vintagestory.API.Client.DataConversion.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPartByte.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DataConversion path: Client/Model/Mesh/CustomMeshDataPartByte.cs startLine: 2 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPartByte.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Float path: Client/Model/Mesh/CustomMeshDataPartByte.cs startLine: 4 @@ -69,8 +69,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPartByte.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NormalizedFloat path: Client/Model/Mesh/CustomMeshDataPartByte.cs startLine: 5 @@ -95,8 +95,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/CustomMeshDataPartByte.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Integer path: Client/Model/Mesh/CustomMeshDataPartByte.cs startLine: 6 diff --git a/api/Vintagestory.API.Client.DefaultShaderUniforms.yml b/api/Vintagestory.API.Client.DefaultShaderUniforms.yml index a15bcf90..e52c51f0 100644 --- a/api/Vintagestory.API.Client.DefaultShaderUniforms.yml +++ b/api/Vintagestory.API.Client.DefaultShaderUniforms.yml @@ -74,8 +74,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DefaultShaderUniforms path: Client/Render/DefaultShaderUniforms.cs startLine: 7 @@ -109,8 +109,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ZNear path: Client/Render/DefaultShaderUniforms.cs startLine: 12 @@ -138,8 +138,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ZFar path: Client/Render/DefaultShaderUniforms.cs startLine: 17 @@ -167,8 +167,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DropShadowIntensity path: Client/Render/DefaultShaderUniforms.cs startLine: 19 @@ -194,8 +194,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShadowRangeNear path: Client/Render/DefaultShaderUniforms.cs startLine: 20 @@ -221,8 +221,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShadowRangeFar path: Client/Render/DefaultShaderUniforms.cs startLine: 21 @@ -248,8 +248,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShadowZExtendNear path: Client/Render/DefaultShaderUniforms.cs startLine: 23 @@ -275,8 +275,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShadowZExtendFar path: Client/Render/DefaultShaderUniforms.cs startLine: 24 @@ -302,8 +302,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NightVisionStrength path: Client/Render/DefaultShaderUniforms.cs startLine: 25 @@ -329,8 +329,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToShadowMapSpaceMatrixFar path: Client/Render/DefaultShaderUniforms.cs startLine: 28 @@ -356,8 +356,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToShadowMapSpaceMatrixNear path: Client/Render/DefaultShaderUniforms.cs startLine: 29 @@ -383,8 +383,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PointLightsCount path: Client/Render/DefaultShaderUniforms.cs startLine: 31 @@ -410,8 +410,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PointLights3 path: Client/Render/DefaultShaderUniforms.cs startLine: 32 @@ -437,8 +437,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PointLightColors3 path: Client/Render/DefaultShaderUniforms.cs startLine: 33 @@ -464,8 +464,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SunPositionScreen path: Client/Render/DefaultShaderUniforms.cs startLine: 35 @@ -491,8 +491,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SunPosition3D path: Client/Render/DefaultShaderUniforms.cs startLine: 36 @@ -518,8 +518,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LightPosition3D path: Client/Render/DefaultShaderUniforms.cs startLine: 37 @@ -545,8 +545,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerViewVector path: Client/Render/DefaultShaderUniforms.cs startLine: 39 @@ -572,8 +572,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DamageVignetting path: Client/Render/DefaultShaderUniforms.cs startLine: 40 @@ -599,8 +599,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DamageVignettingSide path: Client/Render/DefaultShaderUniforms.cs startLine: 44 @@ -628,8 +628,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FrostVignetting path: Client/Render/DefaultShaderUniforms.cs startLine: 45 @@ -655,8 +655,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExtraSepia path: Client/Render/DefaultShaderUniforms.cs startLine: 46 @@ -682,8 +682,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExtraBloom path: Client/Render/DefaultShaderUniforms.cs startLine: 47 @@ -709,8 +709,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FlagFogDensity path: Client/Render/DefaultShaderUniforms.cs startLine: 49 @@ -736,8 +736,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FlatFogStartYPos path: Client/Render/DefaultShaderUniforms.cs startLine: 50 @@ -763,8 +763,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dusk path: Client/Render/DefaultShaderUniforms.cs startLine: 51 @@ -790,8 +790,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TimeCounter path: Client/Render/DefaultShaderUniforms.cs startLine: 54 @@ -817,8 +817,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WaterStillCounter path: Client/Render/DefaultShaderUniforms.cs startLine: 56 @@ -844,8 +844,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WaterFlowCounter path: Client/Render/DefaultShaderUniforms.cs startLine: 57 @@ -871,8 +871,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WaterWaveCounter path: Client/Render/DefaultShaderUniforms.cs startLine: 58 @@ -898,8 +898,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WindWaveCounter path: Client/Render/DefaultShaderUniforms.cs startLine: 59 @@ -925,8 +925,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WindWaveCounterHighFreq path: Client/Render/DefaultShaderUniforms.cs startLine: 60 @@ -952,8 +952,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GlitchStrength path: Client/Render/DefaultShaderUniforms.cs startLine: 62 @@ -979,8 +979,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GlitchWaviness path: Client/Render/DefaultShaderUniforms.cs startLine: 63 @@ -1006,8 +1006,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WindSpeed path: Client/Render/DefaultShaderUniforms.cs startLine: 64 @@ -1033,8 +1033,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WindWaveIntensity path: Client/Render/DefaultShaderUniforms.cs startLine: 65 @@ -1060,8 +1060,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WaterWaveIntensity path: Client/Render/DefaultShaderUniforms.cs startLine: 66 @@ -1087,8 +1087,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FogWaveCounter path: Client/Render/DefaultShaderUniforms.cs startLine: 67 @@ -1114,8 +1114,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GlobalWorldWarp path: Client/Render/DefaultShaderUniforms.cs startLine: 69 @@ -1141,8 +1141,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SeaLevel path: Client/Render/DefaultShaderUniforms.cs startLine: 70 @@ -1168,8 +1168,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SunsetMod path: Client/Render/DefaultShaderUniforms.cs startLine: 72 @@ -1195,8 +1195,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SunLightTextureId path: Client/Render/DefaultShaderUniforms.cs startLine: 73 @@ -1222,8 +1222,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GlowTextureId path: Client/Render/DefaultShaderUniforms.cs startLine: 74 @@ -1249,8 +1249,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SkyTextureId path: Client/Render/DefaultShaderUniforms.cs startLine: 75 @@ -1276,8 +1276,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DitherSeed path: Client/Render/DefaultShaderUniforms.cs startLine: 77 @@ -1303,8 +1303,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FrameWidth path: Client/Render/DefaultShaderUniforms.cs startLine: 78 @@ -1330,8 +1330,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerToSealevelOffset path: Client/Render/DefaultShaderUniforms.cs startLine: 79 @@ -1357,8 +1357,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorMapRects4 path: Client/Render/DefaultShaderUniforms.cs startLine: 81 @@ -1384,8 +1384,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SeasonRel path: Client/Render/DefaultShaderUniforms.cs startLine: 82 @@ -1411,8 +1411,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockAtlasHeight path: Client/Render/DefaultShaderUniforms.cs startLine: 83 @@ -1438,8 +1438,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SeasonTemperature path: Client/Render/DefaultShaderUniforms.cs startLine: 84 @@ -1465,8 +1465,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SunSpecularIntensity path: Client/Render/DefaultShaderUniforms.cs startLine: 85 @@ -1492,8 +1492,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SunlightExtraBrightness path: Client/Render/DefaultShaderUniforms.cs startLine: 87 @@ -1519,8 +1519,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PerceptionEffectId path: Client/Render/DefaultShaderUniforms.cs startLine: 89 @@ -1546,8 +1546,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PerceptionEffectIntensity path: Client/Render/DefaultShaderUniforms.cs startLine: 90 @@ -1573,8 +1573,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerPos path: Client/Render/DefaultShaderUniforms.cs startLine: 93 @@ -1600,8 +1600,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: playerReferencePos path: Client/Render/DefaultShaderUniforms.cs startLine: 94 @@ -1627,8 +1627,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Render/DefaultShaderUniforms.cs startLine: 100 @@ -1656,8 +1656,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DescaleTemperature path: Client/Render/DefaultShaderUniforms.cs startLine: 113 @@ -1690,8 +1690,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/DefaultShaderUniforms.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Update path: Client/Render/DefaultShaderUniforms.cs startLine: 118 diff --git a/api/Vintagestory.API.Client.DialogElement.yml b/api/Vintagestory.API.Client.DialogElement.yml index a6c2401e..279edc7b 100644 --- a/api/Vintagestory.API.Client.DialogElement.yml +++ b/api/Vintagestory.API.Client.DialogElement.yml @@ -34,8 +34,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DialogElement path: Client/UI/JsonDialog.cs startLine: 126 @@ -69,8 +69,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Client/UI/JsonDialog.cs startLine: 128 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Width path: Client/UI/JsonDialog.cs startLine: 129 @@ -123,8 +123,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Height path: Client/UI/JsonDialog.cs startLine: 130 @@ -150,8 +150,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PaddingLeft path: Client/UI/JsonDialog.cs startLine: 131 @@ -177,8 +177,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Type path: Client/UI/JsonDialog.cs startLine: 132 @@ -204,8 +204,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mode path: Client/UI/JsonDialog.cs startLine: 133 @@ -231,8 +231,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Label path: Client/UI/JsonDialog.cs startLine: 134 @@ -258,8 +258,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Icon path: Client/UI/JsonDialog.cs startLine: 135 @@ -285,8 +285,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Text path: Client/UI/JsonDialog.cs startLine: 136 @@ -312,8 +312,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Tooltip path: Client/UI/JsonDialog.cs startLine: 137 @@ -339,8 +339,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FontSize path: Client/UI/JsonDialog.cs startLine: 138 @@ -366,8 +366,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Icons path: Client/UI/JsonDialog.cs startLine: 140 @@ -393,8 +393,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Values path: Client/UI/JsonDialog.cs startLine: 141 @@ -420,8 +420,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Names path: Client/UI/JsonDialog.cs startLine: 142 @@ -447,8 +447,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Tooltips path: Client/UI/JsonDialog.cs startLine: 143 @@ -474,8 +474,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinValue path: Client/UI/JsonDialog.cs startLine: 144 @@ -501,8 +501,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxValue path: Client/UI/JsonDialog.cs startLine: 145 @@ -528,8 +528,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Step path: Client/UI/JsonDialog.cs startLine: 146 @@ -555,8 +555,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Param path: Client/UI/JsonDialog.cs startLine: 151 diff --git a/api/Vintagestory.API.Client.DialogRow.yml b/api/Vintagestory.API.Client.DialogRow.yml index 02ee76ae..d980e7d8 100644 --- a/api/Vintagestory.API.Client.DialogRow.yml +++ b/api/Vintagestory.API.Client.DialogRow.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DialogRow path: Client/UI/JsonDialog.cs startLine: 84 @@ -55,8 +55,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Elements path: Client/UI/JsonDialog.cs startLine: 86 @@ -82,8 +82,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BottomPadding path: Client/UI/JsonDialog.cs startLine: 87 @@ -109,8 +109,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TopPadding path: Client/UI/JsonDialog.cs startLine: 88 @@ -136,8 +136,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/JsonDialog.cs startLine: 90 @@ -165,8 +165,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/JsonDialog.cs startLine: 95 diff --git a/api/Vintagestory.API.Client.DrawDelegate.yml b/api/Vintagestory.API.Client.DrawDelegate.yml index e9443db2..984b9ed4 100644 --- a/api/Vintagestory.API.Client.DrawDelegate.yml +++ b/api/Vintagestory.API.Client.DrawDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawDelegate path: Client/UI/IconUtil.cs startLine: 8 diff --git a/api/Vintagestory.API.Client.DrawDelegateWithBounds.yml b/api/Vintagestory.API.Client.DrawDelegateWithBounds.yml index 1c49d2da..55c46fc6 100644 --- a/api/Vintagestory.API.Client.DrawDelegateWithBounds.yml +++ b/api/Vintagestory.API.Client.DrawDelegateWithBounds.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementCustomDraw.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawDelegateWithBounds path: Client/UI/Elements/Impl/Static/GuiElementCustomDraw.cs startLine: 4 diff --git a/api/Vintagestory.API.Client.DrawIconDelegate.yml b/api/Vintagestory.API.Client.DrawIconDelegate.yml index 59dc979c..23b4af96 100644 --- a/api/Vintagestory.API.Client.DrawIconDelegate.yml +++ b/api/Vintagestory.API.Client.DrawIconDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawIconDelegate path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 13 diff --git a/api/Vintagestory.API.Client.DrawSkillIconDelegate.yml b/api/Vintagestory.API.Client.DrawSkillIconDelegate.yml index 3aff9902..185c365b 100644 --- a/api/Vintagestory.API.Client.DrawSkillIconDelegate.yml +++ b/api/Vintagestory.API.Client.DrawSkillIconDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/SkillItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawSkillIconDelegate path: Client/UI/Elements/Impl/Misc/SkillItem.cs startLine: 9 diff --git a/api/Vintagestory.API.Client.DrunkPerceptionEffect.yml b/api/Vintagestory.API.Client.DrunkPerceptionEffect.yml index a1e2a165..e484b8ef 100644 --- a/api/Vintagestory.API.Client.DrunkPerceptionEffect.yml +++ b/api/Vintagestory.API.Client.DrunkPerceptionEffect.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/DrunkPerceptionEffect.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrunkPerceptionEffect path: Client/Render/PerceptionEffects/DrunkPerceptionEffect.cs startLine: 6 @@ -63,8 +63,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/DrunkPerceptionEffect.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Render/PerceptionEffects/DrunkPerceptionEffect.cs startLine: 10 @@ -95,8 +95,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/DrunkPerceptionEffect.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBeforeGameRender path: Client/Render/PerceptionEffects/DrunkPerceptionEffect.cs startLine: 19 @@ -129,8 +129,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/DrunkPerceptionEffect.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ApplyToFpHand path: Client/Render/PerceptionEffects/DrunkPerceptionEffect.cs startLine: 50 @@ -160,8 +160,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/DrunkPerceptionEffect.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ApplyToTpPlayer path: Client/Render/PerceptionEffects/DrunkPerceptionEffect.cs startLine: 59 @@ -198,8 +198,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/DrunkPerceptionEffect.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NowActive path: Client/Render/PerceptionEffects/DrunkPerceptionEffect.cs startLine: 71 diff --git a/api/Vintagestory.API.Client.DummyRenderer.yml b/api/Vintagestory.API.Client.DummyRenderer.yml index f53151bd..48d05ecc 100644 --- a/api/Vintagestory.API.Client.DummyRenderer.yml +++ b/api/Vintagestory.API.Client.DummyRenderer.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DummyRenderer path: Client/API/IClientEventAPI.cs startLine: 69 @@ -58,8 +58,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderOrder path: Client/API/IClientEventAPI.cs startLine: 71 @@ -196,8 +196,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderRange path: Client/API/IClientEventAPI.cs startLine: 72 @@ -229,8 +229,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: action path: Client/API/IClientEventAPI.cs startLine: 73 @@ -256,8 +256,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/API/IClientEventAPI.cs startLine: 75 @@ -286,8 +286,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnRenderFrame path: Client/API/IClientEventAPI.cs startLine: 80 diff --git a/api/Vintagestory.API.Client.ElementBounds.yml b/api/Vintagestory.API.Client.ElementBounds.yml index 129d0fd6..758530e0 100644 --- a/api/Vintagestory.API.Client.ElementBounds.yml +++ b/api/Vintagestory.API.Client.ElementBounds.yml @@ -126,8 +126,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ElementBounds path: Client/UI/ElementBounds.cs startLine: 12 @@ -167,8 +167,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParentBounds path: Client/UI/ElementBounds.cs startLine: 14 @@ -194,8 +194,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LeftOfBounds path: Client/UI/ElementBounds.cs startLine: 15 @@ -221,8 +221,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChildBounds path: Client/UI/ElementBounds.cs startLine: 17 @@ -248,8 +248,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsWindowBounds path: Client/UI/ElementBounds.cs startLine: 19 @@ -275,8 +275,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Client/UI/ElementBounds.cs startLine: 24 @@ -304,8 +304,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Alignment path: Client/UI/ElementBounds.cs startLine: 26 @@ -331,8 +331,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BothSizing path: Client/UI/ElementBounds.cs startLine: 31 @@ -362,8 +362,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: verticalSizing path: Client/UI/ElementBounds.cs startLine: 36 @@ -389,8 +389,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: horizontalSizing path: Client/UI/ElementBounds.cs startLine: 37 @@ -416,8 +416,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: percentPaddingX path: Client/UI/ElementBounds.cs startLine: 42 @@ -443,8 +443,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: percentPaddingY path: Client/UI/ElementBounds.cs startLine: 43 @@ -470,8 +470,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: percentX path: Client/UI/ElementBounds.cs startLine: 44 @@ -497,8 +497,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: percentY path: Client/UI/ElementBounds.cs startLine: 45 @@ -524,8 +524,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: percentWidth path: Client/UI/ElementBounds.cs startLine: 46 @@ -551,8 +551,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: percentHeight path: Client/UI/ElementBounds.cs startLine: 47 @@ -578,8 +578,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: fixedMarginX path: Client/UI/ElementBounds.cs startLine: 50 @@ -605,8 +605,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: fixedMarginY path: Client/UI/ElementBounds.cs startLine: 51 @@ -632,8 +632,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: fixedPaddingX path: Client/UI/ElementBounds.cs startLine: 52 @@ -659,8 +659,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: fixedPaddingY path: Client/UI/ElementBounds.cs startLine: 53 @@ -686,8 +686,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: fixedX path: Client/UI/ElementBounds.cs startLine: 54 @@ -713,8 +713,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: fixedY path: Client/UI/ElementBounds.cs startLine: 55 @@ -740,8 +740,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: fixedWidth path: Client/UI/ElementBounds.cs startLine: 56 @@ -767,8 +767,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: fixedHeight path: Client/UI/ElementBounds.cs startLine: 57 @@ -794,8 +794,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: fixedOffsetX path: Client/UI/ElementBounds.cs startLine: 58 @@ -821,8 +821,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: fixedOffsetY path: Client/UI/ElementBounds.cs startLine: 59 @@ -848,8 +848,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: absPaddingX path: Client/UI/ElementBounds.cs startLine: 66 @@ -875,8 +875,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: absPaddingY path: Client/UI/ElementBounds.cs startLine: 67 @@ -902,8 +902,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: absMarginX path: Client/UI/ElementBounds.cs startLine: 68 @@ -929,8 +929,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: absMarginY path: Client/UI/ElementBounds.cs startLine: 69 @@ -956,8 +956,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: absOffsetX path: Client/UI/ElementBounds.cs startLine: 70 @@ -983,8 +983,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: absOffsetY path: Client/UI/ElementBounds.cs startLine: 71 @@ -1010,8 +1010,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: absFixedX path: Client/UI/ElementBounds.cs startLine: 73 @@ -1037,8 +1037,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: absFixedY path: Client/UI/ElementBounds.cs startLine: 74 @@ -1064,8 +1064,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: absInnerWidth path: Client/UI/ElementBounds.cs startLine: 75 @@ -1091,8 +1091,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: absInnerHeight path: Client/UI/ElementBounds.cs startLine: 76 @@ -1118,8 +1118,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Name path: Client/UI/ElementBounds.cs startLine: 78 @@ -1145,8 +1145,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Initialized path: Client/UI/ElementBounds.cs startLine: 81 @@ -1172,8 +1172,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsDrawingSurface path: Client/UI/ElementBounds.cs startLine: 86 @@ -1201,8 +1201,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RequiresRecalculation path: Client/UI/ElementBounds.cs startLine: 90 @@ -1230,8 +1230,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: relX path: Client/UI/ElementBounds.cs startLine: 95 @@ -1261,8 +1261,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: relY path: Client/UI/ElementBounds.cs startLine: 96 @@ -1290,8 +1290,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: absX path: Client/UI/ElementBounds.cs startLine: 102 @@ -1321,8 +1321,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: absY path: Client/UI/ElementBounds.cs startLine: 103 @@ -1350,8 +1350,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OuterWidth path: Client/UI/ElementBounds.cs startLine: 108 @@ -1381,8 +1381,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OuterHeight path: Client/UI/ElementBounds.cs startLine: 112 @@ -1412,8 +1412,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OuterWidthInt path: Client/UI/ElementBounds.cs startLine: 114 @@ -1441,8 +1441,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OuterHeightInt path: Client/UI/ElementBounds.cs startLine: 115 @@ -1470,8 +1470,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InnerWidth path: Client/UI/ElementBounds.cs startLine: 117 @@ -1499,8 +1499,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InnerHeight path: Client/UI/ElementBounds.cs startLine: 118 @@ -1528,8 +1528,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: drawX path: Client/UI/ElementBounds.cs startLine: 124 @@ -1559,8 +1559,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: drawY path: Client/UI/ElementBounds.cs startLine: 128 @@ -1588,8 +1588,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: bgDrawX path: Client/UI/ElementBounds.cs startLine: 136 @@ -1619,8 +1619,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: bgDrawY path: Client/UI/ElementBounds.cs startLine: 143 @@ -1648,8 +1648,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: renderX path: Client/UI/ElementBounds.cs startLine: 152 @@ -1677,8 +1677,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: renderY path: Client/UI/ElementBounds.cs startLine: 153 @@ -1706,8 +1706,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: renderOffsetX path: Client/UI/ElementBounds.cs startLine: 156 @@ -1733,8 +1733,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: renderOffsetY path: Client/UI/ElementBounds.cs startLine: 156 @@ -1760,8 +1760,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/ElementBounds.cs startLine: 158 @@ -1789,8 +1789,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MarkDirtyRecursive path: Client/UI/ElementBounds.cs startLine: 164 @@ -1815,8 +1815,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CalcWorldBounds path: Client/UI/ElementBounds.cs startLine: 181 @@ -1841,8 +1841,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: scaled path: Client/UI/ElementBounds.cs startLine: 405 @@ -1875,8 +1875,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithScale path: Client/UI/ElementBounds.cs startLine: 411 @@ -1909,8 +1909,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithChildren path: Client/UI/ElementBounds.cs startLine: 433 @@ -1943,8 +1943,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithChild path: Client/UI/ElementBounds.cs startLine: 442 @@ -1974,8 +1974,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RightOf path: Client/UI/ElementBounds.cs startLine: 458 @@ -2010,8 +2010,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PositionInside path: Client/UI/ElementBounds.cs startLine: 472 @@ -2051,8 +2051,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PointInside path: Client/UI/ElementBounds.cs startLine: 488 @@ -2092,8 +2092,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PointInside path: Client/UI/ElementBounds.cs startLine: 505 @@ -2133,8 +2133,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PartiallyInside path: Client/UI/ElementBounds.cs startLine: 520 @@ -2167,8 +2167,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CopyOnlySize path: Client/UI/ElementBounds.cs startLine: 536 @@ -2198,8 +2198,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CopyOffsetedSibling path: Client/UI/ElementBounds.cs startLine: 556 @@ -2241,8 +2241,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BelowCopy path: Client/UI/ElementBounds.cs startLine: 585 @@ -2284,8 +2284,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RightCopy path: Client/UI/ElementBounds.cs startLine: 620 @@ -2331,8 +2331,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FlatCopy path: Client/UI/ElementBounds.cs startLine: 653 @@ -2362,8 +2362,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ForkChild path: Client/UI/ElementBounds.cs startLine: 682 @@ -2390,8 +2390,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ForkChildOffseted path: Client/UI/ElementBounds.cs startLine: 687 @@ -2430,8 +2430,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ForkBoundingParent path: Client/UI/ElementBounds.cs startLine: 719 @@ -2477,8 +2477,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ForkContainingChild path: Client/UI/ElementBounds.cs startLine: 756 @@ -2524,8 +2524,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Client/UI/ElementBounds.cs startLine: 786 @@ -2556,8 +2556,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FixedUnder path: Client/UI/ElementBounds.cs startLine: 797 @@ -2597,8 +2597,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FixedRightOf path: Client/UI/ElementBounds.cs startLine: 809 @@ -2638,8 +2638,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FixedLeftOf path: Client/UI/ElementBounds.cs startLine: 821 @@ -2679,8 +2679,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithFixedSize path: Client/UI/ElementBounds.cs startLine: 833 @@ -2720,8 +2720,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithFixedWidth path: Client/UI/ElementBounds.cs startLine: 845 @@ -2758,8 +2758,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithFixedHeight path: Client/UI/ElementBounds.cs startLine: 857 @@ -2796,8 +2796,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithAlignment path: Client/UI/ElementBounds.cs startLine: 868 @@ -2831,8 +2831,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithSizing path: Client/UI/ElementBounds.cs startLine: 879 @@ -2866,8 +2866,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithSizing path: Client/UI/ElementBounds.cs startLine: 892 @@ -2904,8 +2904,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithFixedMargin path: Client/UI/ElementBounds.cs startLine: 904 @@ -2942,8 +2942,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithFixedMargin path: Client/UI/ElementBounds.cs startLine: 917 @@ -2983,8 +2983,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithFixedPadding path: Client/UI/ElementBounds.cs startLine: 931 @@ -3021,8 +3021,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithFixedPadding path: Client/UI/ElementBounds.cs startLine: 944 @@ -3062,8 +3062,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithFixedAlignmentOffset path: Client/UI/ElementBounds.cs startLine: 958 @@ -3103,8 +3103,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithFixedPosition path: Client/UI/ElementBounds.cs startLine: 972 @@ -3144,8 +3144,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithFixedOffset path: Client/UI/ElementBounds.cs startLine: 985 @@ -3185,8 +3185,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FixedShrink path: Client/UI/ElementBounds.cs startLine: 998 @@ -3223,8 +3223,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FixedGrow path: Client/UI/ElementBounds.cs startLine: 1011 @@ -3261,8 +3261,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FixedGrow path: Client/UI/ElementBounds.cs startLine: 1025 @@ -3302,8 +3302,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithParent path: Client/UI/ElementBounds.cs startLine: 1039 @@ -3337,8 +3337,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithEmptyParent path: Client/UI/ElementBounds.cs startLine: 1049 @@ -3368,8 +3368,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Fixed path: Client/UI/ElementBounds.cs startLine: 1062 @@ -3409,8 +3409,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Fill path: Client/UI/ElementBounds.cs startLine: 1070 @@ -3440,8 +3440,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FixedPos path: Client/UI/ElementBounds.cs startLine: 1079 @@ -3478,8 +3478,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FixedSize path: Client/UI/ElementBounds.cs startLine: 1094 @@ -3519,8 +3519,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FixedSize path: Client/UI/ElementBounds.cs startLine: 1106 @@ -3563,8 +3563,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Fixed path: Client/UI/ElementBounds.cs startLine: 1119 @@ -3610,8 +3610,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FixedOffseted path: Client/UI/ElementBounds.cs startLine: 1134 @@ -3660,8 +3660,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Fixed path: Client/UI/ElementBounds.cs startLine: 1156 @@ -3710,8 +3710,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Percentual path: Client/UI/ElementBounds.cs startLine: 1176 @@ -3754,8 +3754,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Percentual path: Client/UI/ElementBounds.cs startLine: 1195 @@ -3801,8 +3801,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Empty path: Client/UI/ElementBounds.cs startLine: 1211 diff --git a/api/Vintagestory.API.Client.ElementSizing.yml b/api/Vintagestory.API.Client.ElementSizing.yml index b9918f0c..7218c6f1 100644 --- a/api/Vintagestory.API.Client.ElementSizing.yml +++ b/api/Vintagestory.API.Client.ElementSizing.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/ElementSizing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ElementSizing path: Client/UI/Elements/ElementSizing.cs startLine: 2 @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/ElementSizing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Fixed path: Client/UI/Elements/ElementSizing.cs startLine: 7 @@ -72,8 +72,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/ElementSizing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Percentual path: Client/UI/Elements/ElementSizing.cs startLine: 12 @@ -100,8 +100,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/ElementSizing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FitToChildren path: Client/UI/Elements/ElementSizing.cs startLine: 17 @@ -128,8 +128,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/ElementSizing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PercentualSubstractFixed path: Client/UI/Elements/ElementSizing.cs startLine: 22 diff --git a/api/Vintagestory.API.Client.ElementStdBounds.yml b/api/Vintagestory.API.Client.ElementStdBounds.yml index 071724e3..13d6bd26 100644 --- a/api/Vintagestory.API.Client.ElementStdBounds.yml +++ b/api/Vintagestory.API.Client.ElementStdBounds.yml @@ -34,8 +34,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementStdBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ElementStdBounds path: Client/UI/ElementStdBounds.cs startLine: 5 @@ -71,8 +71,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementStdBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: mainMenuUnscaledLogoSize path: Client/UI/ElementStdBounds.cs startLine: 7 @@ -98,8 +98,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementStdBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: mainMenuUnscaledLogoHorPadding path: Client/UI/ElementStdBounds.cs startLine: 8 @@ -125,8 +125,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementStdBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: mainMenuUnscaledLogoVerPadding path: Client/UI/ElementStdBounds.cs startLine: 9 @@ -152,8 +152,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementStdBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: mainMenuUnscaledWoodPlankWidth path: Client/UI/ElementStdBounds.cs startLine: 10 @@ -179,8 +179,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementStdBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Statbar path: Client/UI/ElementStdBounds.cs startLine: 18 @@ -220,8 +220,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementStdBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AutosizedMainDialog path: Client/UI/ElementStdBounds.cs startLine: 33 @@ -251,8 +251,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementStdBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MainScreenRightPart path: Client/UI/ElementStdBounds.cs startLine: 45 @@ -281,8 +281,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementStdBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AutosizedMainDialogAtPos path: Client/UI/ElementStdBounds.cs startLine: 58 @@ -317,8 +317,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementStdBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DialogBackground path: Client/UI/ElementStdBounds.cs startLine: 67 @@ -347,8 +347,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementStdBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DialogBackground path: Client/UI/ElementStdBounds.cs startLine: 75 @@ -385,8 +385,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementStdBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MenuButton path: Client/UI/ElementStdBounds.cs startLine: 87 @@ -426,8 +426,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementStdBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rowed path: Client/UI/ElementStdBounds.cs startLine: 107 @@ -470,8 +470,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementStdBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sign path: Client/UI/ElementStdBounds.cs startLine: 130 @@ -517,8 +517,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementStdBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Slider path: Client/UI/ElementStdBounds.cs startLine: 144 @@ -555,8 +555,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementStdBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VerticalScrollbar path: Client/UI/ElementStdBounds.cs startLine: 162 @@ -590,8 +590,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementStdBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Slot path: Client/UI/ElementStdBounds.cs startLine: 177 @@ -626,8 +626,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementStdBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SlotGrid path: Client/UI/ElementStdBounds.cs startLine: 191 @@ -668,8 +668,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementStdBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToggleButton path: Client/UI/ElementStdBounds.cs startLine: 204 @@ -708,8 +708,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementStdBounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TitleBar path: Client/UI/ElementStdBounds.cs startLine: 218 diff --git a/api/Vintagestory.API.Client.EnumBlendMode.yml b/api/Vintagestory.API.Client.EnumBlendMode.yml index 242454a7..c0b13488 100644 --- a/api/Vintagestory.API.Client.EnumBlendMode.yml +++ b/api/Vintagestory.API.Client.EnumBlendMode.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumBlendMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumBlendMode path: Client/Render/EnumBlendMode.cs startLine: 2 @@ -46,8 +46,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumBlendMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Standard path: Client/Render/EnumBlendMode.cs startLine: 4 @@ -72,8 +72,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumBlendMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Multiply path: Client/Render/EnumBlendMode.cs startLine: 5 @@ -98,8 +98,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumBlendMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Brighten path: Client/Render/EnumBlendMode.cs startLine: 6 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumBlendMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PremultipliedAlpha path: Client/Render/EnumBlendMode.cs startLine: 7 @@ -150,8 +150,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumBlendMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Glow path: Client/Render/EnumBlendMode.cs startLine: 8 @@ -176,8 +176,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumBlendMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Overlay path: Client/Render/EnumBlendMode.cs startLine: 9 diff --git a/api/Vintagestory.API.Client.EnumBlockEntityPacketId.yml b/api/Vintagestory.API.Client.EnumBlockEntityPacketId.yml index 111c6278..be5e38a7 100644 --- a/api/Vintagestory.API.Client.EnumBlockEntityPacketId.yml +++ b/api/Vintagestory.API.Client.EnumBlockEntityPacketId.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumBlockEntityPacketId path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 262 @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Open path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 264 @@ -70,8 +70,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Close path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 265 diff --git a/api/Vintagestory.API.Client.EnumButtonStyle.yml b/api/Vintagestory.API.Client.EnumButtonStyle.yml index cc8c0995..c4bfbba0 100644 --- a/api/Vintagestory.API.Client.EnumButtonStyle.yml +++ b/api/Vintagestory.API.Client.EnumButtonStyle.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumButtonStyle path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs startLine: 7 @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: None path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs startLine: 9 @@ -70,8 +70,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MainMenu path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs startLine: 10 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Normal path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs startLine: 11 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Small path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs startLine: 12 diff --git a/api/Vintagestory.API.Client.EnumCalcBoundsResult.yml b/api/Vintagestory.API.Client.EnumCalcBoundsResult.yml index 983d9698..30d94f11 100644 --- a/api/Vintagestory.API.Client.EnumCalcBoundsResult.yml +++ b/api/Vintagestory.API.Client.EnumCalcBoundsResult.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumCalcBoundsResult path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs startLine: 21 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Continue path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs startLine: 26 @@ -71,8 +71,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Multiline path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs startLine: 30 @@ -99,8 +99,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Nextline path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs startLine: 34 diff --git a/api/Vintagestory.API.Client.EnumCameraMode.yml b/api/Vintagestory.API.Client.EnumCameraMode.yml index f2c7078c..8ff8da7d 100644 --- a/api/Vintagestory.API.Client.EnumCameraMode.yml +++ b/api/Vintagestory.API.Client.EnumCameraMode.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Client/EnumCameraType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumCameraMode path: Client/EnumCameraType.cs startLine: 2 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Client/EnumCameraType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FirstPerson path: Client/EnumCameraType.cs startLine: 4 @@ -69,8 +69,8 @@ items: source: remote: path: VintagestoryApi/Client/EnumCameraType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ThirdPerson path: Client/EnumCameraType.cs startLine: 5 @@ -95,8 +95,8 @@ items: source: remote: path: VintagestoryApi/Client/EnumCameraType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Overhead path: Client/EnumCameraType.cs startLine: 6 diff --git a/api/Vintagestory.API.Client.EnumChannelState.yml b/api/Vintagestory.API.Client.EnumChannelState.yml index 81d0a79f..5f492a76 100644 --- a/api/Vintagestory.API.Client.EnumChannelState.yml +++ b/api/Vintagestory.API.Client.EnumChannelState.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientNetworkAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumChannelState path: Client/API/IClientNetworkAPI.cs startLine: 29 @@ -46,8 +46,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientNetworkAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NotFound path: Client/API/IClientNetworkAPI.cs startLine: 34 @@ -74,8 +74,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientNetworkAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Registered path: Client/API/IClientNetworkAPI.cs startLine: 38 @@ -102,8 +102,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientNetworkAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Connected path: Client/API/IClientNetworkAPI.cs startLine: 42 @@ -130,8 +130,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientNetworkAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NotConnected path: Client/API/IClientNetworkAPI.cs startLine: 46 diff --git a/api/Vintagestory.API.Client.EnumChunkRenderPass.yml b/api/Vintagestory.API.Client.EnumChunkRenderPass.yml index 4e1b461d..926f829e 100644 --- a/api/Vintagestory.API.Client.EnumChunkRenderPass.yml +++ b/api/Vintagestory.API.Client.EnumChunkRenderPass.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumChunkRenderPass.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumChunkRenderPass path: Client/Render/EnumChunkRenderPass.cs startLine: 5 @@ -49,8 +49,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumChunkRenderPass.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Opaque path: Client/Render/EnumChunkRenderPass.cs startLine: 10 @@ -77,8 +77,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumChunkRenderPass.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OpaqueNoCull path: Client/Render/EnumChunkRenderPass.cs startLine: 14 @@ -105,8 +105,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumChunkRenderPass.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlendNoCull path: Client/Render/EnumChunkRenderPass.cs startLine: 18 @@ -133,8 +133,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumChunkRenderPass.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Transparent path: Client/Render/EnumChunkRenderPass.cs startLine: 22 @@ -161,8 +161,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumChunkRenderPass.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Liquid path: Client/Render/EnumChunkRenderPass.cs startLine: 26 @@ -189,8 +189,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumChunkRenderPass.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TopSoil path: Client/Render/EnumChunkRenderPass.cs startLine: 30 @@ -217,8 +217,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumChunkRenderPass.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Meta path: Client/Render/EnumChunkRenderPass.cs startLine: 34 diff --git a/api/Vintagestory.API.Client.EnumCollideFlags.yml b/api/Vintagestory.API.Client.EnumCollideFlags.yml index 580b7e21..5250e259 100644 --- a/api/Vintagestory.API.Client.EnumCollideFlags.yml +++ b/api/Vintagestory.API.Client.EnumCollideFlags.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Client/ParticlePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumCollideFlags path: Client/ParticlePhysics.cs startLine: 23 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Client/ParticlePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CollideX path: Client/ParticlePhysics.cs startLine: 26 @@ -79,8 +79,8 @@ items: source: remote: path: VintagestoryApi/Client/ParticlePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CollideY path: Client/ParticlePhysics.cs startLine: 27 @@ -105,8 +105,8 @@ items: source: remote: path: VintagestoryApi/Client/ParticlePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CollideZ path: Client/ParticlePhysics.cs startLine: 28 diff --git a/api/Vintagestory.API.Client.EnumDialogArea.yml b/api/Vintagestory.API.Client.EnumDialogArea.yml index 0a9b99a1..b7772e8a 100644 --- a/api/Vintagestory.API.Client.EnumDialogArea.yml +++ b/api/Vintagestory.API.Client.EnumDialogArea.yml @@ -32,8 +32,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementAlignment.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumDialogArea path: Client/UI/ElementAlignment.cs startLine: 6 @@ -62,8 +62,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementAlignment.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: None path: Client/UI/ElementAlignment.cs startLine: 8 @@ -88,8 +88,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementAlignment.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LeftTop path: Client/UI/ElementAlignment.cs startLine: 9 @@ -114,8 +114,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementAlignment.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LeftMiddle path: Client/UI/ElementAlignment.cs startLine: 10 @@ -140,8 +140,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementAlignment.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LeftBottom path: Client/UI/ElementAlignment.cs startLine: 11 @@ -166,8 +166,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementAlignment.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LeftFixed path: Client/UI/ElementAlignment.cs startLine: 12 @@ -192,8 +192,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementAlignment.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CenterTop path: Client/UI/ElementAlignment.cs startLine: 14 @@ -218,8 +218,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementAlignment.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CenterMiddle path: Client/UI/ElementAlignment.cs startLine: 15 @@ -244,8 +244,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementAlignment.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CenterBottom path: Client/UI/ElementAlignment.cs startLine: 16 @@ -270,8 +270,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementAlignment.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CenterFixed path: Client/UI/ElementAlignment.cs startLine: 17 @@ -296,8 +296,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementAlignment.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RightTop path: Client/UI/ElementAlignment.cs startLine: 19 @@ -322,8 +322,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementAlignment.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RightMiddle path: Client/UI/ElementAlignment.cs startLine: 20 @@ -348,8 +348,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementAlignment.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RightBottom path: Client/UI/ElementAlignment.cs startLine: 21 @@ -374,8 +374,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementAlignment.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RightFixed path: Client/UI/ElementAlignment.cs startLine: 22 @@ -400,8 +400,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementAlignment.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FixedTop path: Client/UI/ElementAlignment.cs startLine: 24 @@ -426,8 +426,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementAlignment.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FixedMiddle path: Client/UI/ElementAlignment.cs startLine: 25 @@ -452,8 +452,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementAlignment.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FixedBottom path: Client/UI/ElementAlignment.cs startLine: 26 @@ -478,8 +478,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ElementAlignment.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TextBaselineOffset path: Client/UI/ElementAlignment.cs startLine: 28 diff --git a/api/Vintagestory.API.Client.EnumDialogElementMode.yml b/api/Vintagestory.API.Client.EnumDialogElementMode.yml index eff23a26..bdcb492c 100644 --- a/api/Vintagestory.API.Client.EnumDialogElementMode.yml +++ b/api/Vintagestory.API.Client.EnumDialogElementMode.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumDialogElementMode path: Client/UI/JsonDialog.cs startLine: 20 @@ -42,8 +42,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DropDown path: Client/UI/JsonDialog.cs startLine: 22 @@ -68,8 +68,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Buttons path: Client/UI/JsonDialog.cs startLine: 23 diff --git a/api/Vintagestory.API.Client.EnumDialogElementType.yml b/api/Vintagestory.API.Client.EnumDialogElementType.yml index 0165964d..e7435db3 100644 --- a/api/Vintagestory.API.Client.EnumDialogElementType.yml +++ b/api/Vintagestory.API.Client.EnumDialogElementType.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumDialogElementType path: Client/UI/JsonDialog.cs startLine: 8 @@ -48,8 +48,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Select path: Client/UI/JsonDialog.cs startLine: 10 @@ -74,8 +74,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Input path: Client/UI/JsonDialog.cs startLine: 11 @@ -100,8 +100,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Slider path: Client/UI/JsonDialog.cs startLine: 12 @@ -126,8 +126,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Switch path: Client/UI/JsonDialog.cs startLine: 13 @@ -152,8 +152,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NumberInput path: Client/UI/JsonDialog.cs startLine: 14 @@ -178,8 +178,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Button path: Client/UI/JsonDialog.cs startLine: 15 @@ -204,8 +204,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Text path: Client/UI/JsonDialog.cs startLine: 16 @@ -230,8 +230,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DynamicSelect path: Client/UI/JsonDialog.cs startLine: 17 diff --git a/api/Vintagestory.API.Client.EnumDialogType.yml b/api/Vintagestory.API.Client.EnumDialogType.yml index 33d1ff0d..13bd5b86 100644 --- a/api/Vintagestory.API.Client.EnumDialogType.yml +++ b/api/Vintagestory.API.Client.EnumDialogType.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/EnumDialogType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumDialogType path: Client/UI/EnumDialogType.cs startLine: 2 @@ -42,8 +42,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/EnumDialogType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dialog path: Client/UI/EnumDialogType.cs startLine: 4 @@ -68,8 +68,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/EnumDialogType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HUD path: Client/UI/EnumDialogType.cs startLine: 5 diff --git a/api/Vintagestory.API.Client.EnumDrawMode.yml b/api/Vintagestory.API.Client.EnumDrawMode.yml index 86653ec3..96421b8f 100644 --- a/api/Vintagestory.API.Client.EnumDrawMode.yml +++ b/api/Vintagestory.API.Client.EnumDrawMode.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumDrawMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumDrawMode path: Client/Render/EnumDrawMode.cs startLine: 2 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumDrawMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Triangles path: Client/Render/EnumDrawMode.cs startLine: 4 @@ -69,8 +69,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumDrawMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Lines path: Client/Render/EnumDrawMode.cs startLine: 5 @@ -95,8 +95,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumDrawMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LineStrip path: Client/Render/EnumDrawMode.cs startLine: 6 diff --git a/api/Vintagestory.API.Client.EnumDrawType.yml b/api/Vintagestory.API.Client.EnumDrawType.yml index 5343641d..ae035b7a 100644 --- a/api/Vintagestory.API.Client.EnumDrawType.yml +++ b/api/Vintagestory.API.Client.EnumDrawType.yml @@ -36,8 +36,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumDrawType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumDrawType path: Client/Render/EnumDrawType.cs startLine: 2 @@ -61,8 +61,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumDrawType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockLayer_1 path: Client/Render/EnumDrawType.cs startLine: 4 @@ -87,8 +87,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumDrawType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockLayer_2 path: Client/Render/EnumDrawType.cs startLine: 5 @@ -113,8 +113,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumDrawType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockLayer_3 path: Client/Render/EnumDrawType.cs startLine: 6 @@ -139,8 +139,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumDrawType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockLayer_4 path: Client/Render/EnumDrawType.cs startLine: 7 @@ -165,8 +165,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumDrawType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockLayer_5 path: Client/Render/EnumDrawType.cs startLine: 8 @@ -191,8 +191,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumDrawType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockLayer_6 path: Client/Render/EnumDrawType.cs startLine: 9 @@ -217,8 +217,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumDrawType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockLayer_7 path: Client/Render/EnumDrawType.cs startLine: 10 @@ -243,8 +243,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumDrawType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: JSON path: Client/Render/EnumDrawType.cs startLine: 11 @@ -269,8 +269,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumDrawType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Empty path: Client/Render/EnumDrawType.cs startLine: 12 @@ -295,8 +295,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumDrawType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Cube path: Client/Render/EnumDrawType.cs startLine: 13 @@ -321,8 +321,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumDrawType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Cross path: Client/Render/EnumDrawType.cs startLine: 14 @@ -347,8 +347,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumDrawType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Transparent path: Client/Render/EnumDrawType.cs startLine: 15 @@ -373,8 +373,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumDrawType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Liquid path: Client/Render/EnumDrawType.cs startLine: 16 @@ -399,8 +399,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumDrawType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TopSoil path: Client/Render/EnumDrawType.cs startLine: 17 @@ -425,8 +425,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumDrawType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CrossAndSnowlayer path: Client/Render/EnumDrawType.cs startLine: 18 @@ -451,8 +451,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumDrawType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: JSONAndWater path: Client/Render/EnumDrawType.cs startLine: 19 @@ -477,8 +477,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumDrawType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: JSONAndSnowLayer path: Client/Render/EnumDrawType.cs startLine: 20 @@ -503,8 +503,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumDrawType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CrossAndSnowlayer_2 path: Client/Render/EnumDrawType.cs startLine: 21 @@ -529,8 +529,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumDrawType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CrossAndSnowlayer_3 path: Client/Render/EnumDrawType.cs startLine: 22 @@ -555,8 +555,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumDrawType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CrossAndSnowlayer_4 path: Client/Render/EnumDrawType.cs startLine: 23 @@ -581,8 +581,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumDrawType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SurfaceLayer path: Client/Render/EnumDrawType.cs startLine: 24 diff --git a/api/Vintagestory.API.Client.EnumFaceCullMode.yml b/api/Vintagestory.API.Client.EnumFaceCullMode.yml index 5fa1588c..40c8744c 100644 --- a/api/Vintagestory.API.Client.EnumFaceCullMode.yml +++ b/api/Vintagestory.API.Client.EnumFaceCullMode.yml @@ -26,8 +26,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumFaceCullMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumFaceCullMode path: Client/Render/EnumFaceCullMode.cs startLine: 2 @@ -51,8 +51,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumFaceCullMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Default path: Client/Render/EnumFaceCullMode.cs startLine: 7 @@ -79,8 +79,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumFaceCullMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NeverCull path: Client/Render/EnumFaceCullMode.cs startLine: 12 @@ -107,8 +107,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumFaceCullMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Merge path: Client/Render/EnumFaceCullMode.cs startLine: 17 @@ -135,8 +135,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumFaceCullMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Callback path: Client/Render/EnumFaceCullMode.cs startLine: 22 @@ -163,8 +163,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumFaceCullMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Collapse path: Client/Render/EnumFaceCullMode.cs startLine: 28 @@ -194,8 +194,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumFaceCullMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MergeMaterial path: Client/Render/EnumFaceCullMode.cs startLine: 33 @@ -222,8 +222,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumFaceCullMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CollapseMaterial path: Client/Render/EnumFaceCullMode.cs startLine: 38 @@ -250,8 +250,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumFaceCullMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Liquid path: Client/Render/EnumFaceCullMode.cs startLine: 43 @@ -278,8 +278,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumFaceCullMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MergeSnowLayer path: Client/Render/EnumFaceCullMode.cs startLine: 45 @@ -304,8 +304,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumFaceCullMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FlushExceptTop path: Client/Render/EnumFaceCullMode.cs startLine: 50 @@ -332,8 +332,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumFaceCullMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Stairs path: Client/Render/EnumFaceCullMode.cs startLine: 55 diff --git a/api/Vintagestory.API.Client.EnumFloat.yml b/api/Vintagestory.API.Client.EnumFloat.yml index 9a40fbf5..08c3f8a5 100644 --- a/api/Vintagestory.API.Client.EnumFloat.yml +++ b/api/Vintagestory.API.Client.EnumFloat.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumFloat path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs startLine: 5 @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: None path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs startLine: 7 @@ -70,8 +70,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Inline path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs startLine: 8 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Left path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs startLine: 9 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Right path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs startLine: 10 diff --git a/api/Vintagestory.API.Client.EnumFontStyle.yml b/api/Vintagestory.API.Client.EnumFontStyle.yml index be0f4b55..459fc3d5 100644 --- a/api/Vintagestory.API.Client.EnumFontStyle.yml +++ b/api/Vintagestory.API.Client.EnumFontStyle.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/EnumFontStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumFontStyle path: Client/UI/EnumFontStyle.cs startLine: 4 @@ -55,8 +55,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/EnumFontStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Regular path: Client/UI/EnumFontStyle.cs startLine: 7 @@ -81,8 +81,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/EnumFontStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Bold path: Client/UI/EnumFontStyle.cs startLine: 8 @@ -107,8 +107,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/EnumFontStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Italic path: Client/UI/EnumFontStyle.cs startLine: 9 @@ -133,8 +133,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/EnumFontStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Underline path: Client/UI/EnumFontStyle.cs startLine: 10 @@ -159,8 +159,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/EnumFontStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Strikeout path: Client/UI/EnumFontStyle.cs startLine: 11 diff --git a/api/Vintagestory.API.Client.EnumFrameBuffer.yml b/api/Vintagestory.API.Client.EnumFrameBuffer.yml index 7b323c34..8e696f04 100644 --- a/api/Vintagestory.API.Client.EnumFrameBuffer.yml +++ b/api/Vintagestory.API.Client.EnumFrameBuffer.yml @@ -32,8 +32,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumFrameBuffer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumFrameBuffer path: Client/Render/EnumFrameBuffer.cs startLine: 2 @@ -57,8 +57,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumFrameBuffer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Default path: Client/Render/EnumFrameBuffer.cs startLine: 4 @@ -83,8 +83,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumFrameBuffer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Primary path: Client/Render/EnumFrameBuffer.cs startLine: 5 @@ -109,8 +109,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumFrameBuffer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Transparent path: Client/Render/EnumFrameBuffer.cs startLine: 6 @@ -135,8 +135,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumFrameBuffer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlurHorizontalMedRes path: Client/Render/EnumFrameBuffer.cs startLine: 7 @@ -161,8 +161,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumFrameBuffer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlurVerticalMedRes path: Client/Render/EnumFrameBuffer.cs startLine: 8 @@ -187,8 +187,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumFrameBuffer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FindBright path: Client/Render/EnumFrameBuffer.cs startLine: 9 @@ -213,8 +213,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumFrameBuffer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GodRays path: Client/Render/EnumFrameBuffer.cs startLine: 10 @@ -239,8 +239,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumFrameBuffer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlurVerticalLowRes path: Client/Render/EnumFrameBuffer.cs startLine: 11 @@ -265,8 +265,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumFrameBuffer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlurHorizontalLowRes path: Client/Render/EnumFrameBuffer.cs startLine: 12 @@ -291,8 +291,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumFrameBuffer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Luma path: Client/Render/EnumFrameBuffer.cs startLine: 13 @@ -317,8 +317,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumFrameBuffer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShadowmapFar path: Client/Render/EnumFrameBuffer.cs startLine: 14 @@ -343,8 +343,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumFrameBuffer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShadowmapNear path: Client/Render/EnumFrameBuffer.cs startLine: 15 @@ -369,8 +369,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumFrameBuffer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SSAO path: Client/Render/EnumFrameBuffer.cs startLine: 16 @@ -395,8 +395,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumFrameBuffer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SSAOBlurVertical path: Client/Render/EnumFrameBuffer.cs startLine: 18 @@ -421,8 +421,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumFrameBuffer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SSAOBlurHorizontal path: Client/Render/EnumFrameBuffer.cs startLine: 19 @@ -447,8 +447,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumFrameBuffer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SSAOBlurVerticalHalfRes path: Client/Render/EnumFrameBuffer.cs startLine: 20 @@ -473,8 +473,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumFrameBuffer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SSAOBlurHorizontalHalfRes path: Client/Render/EnumFrameBuffer.cs startLine: 21 diff --git a/api/Vintagestory.API.Client.EnumFramebufferAttachment.yml b/api/Vintagestory.API.Client.EnumFramebufferAttachment.yml index 839aace9..216a78d1 100644 --- a/api/Vintagestory.API.Client.EnumFramebufferAttachment.yml +++ b/api/Vintagestory.API.Client.EnumFramebufferAttachment.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumFramebufferAttachment path: Client/Render/FramebufferData.cs startLine: 29 @@ -46,8 +46,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorAttachment0 path: Client/Render/FramebufferData.cs startLine: 31 @@ -72,8 +72,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorAttachment1 path: Client/Render/FramebufferData.cs startLine: 32 @@ -98,8 +98,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorAttachment2 path: Client/Render/FramebufferData.cs startLine: 33 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorAttachment3 path: Client/Render/FramebufferData.cs startLine: 34 @@ -150,8 +150,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorAttachment4 path: Client/Render/FramebufferData.cs startLine: 35 @@ -176,8 +176,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DepthAttachment path: Client/Render/FramebufferData.cs startLine: 36 diff --git a/api/Vintagestory.API.Client.EnumFrustumCullMode.yml b/api/Vintagestory.API.Client.EnumFrustumCullMode.yml index ced304b5..04743b29 100644 --- a/api/Vintagestory.API.Client.EnumFrustumCullMode.yml +++ b/api/Vintagestory.API.Client.EnumFrustumCullMode.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FrustumCulling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumFrustumCullMode path: Client/Render/FrustumCulling.cs startLine: 19 @@ -45,8 +45,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FrustumCulling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NoCull path: Client/Render/FrustumCulling.cs startLine: 21 @@ -71,8 +71,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FrustumCulling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CullNormal path: Client/Render/FrustumCulling.cs startLine: 22 @@ -97,8 +97,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FrustumCulling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CullInstant path: Client/Render/FrustumCulling.cs startLine: 23 @@ -123,8 +123,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FrustumCulling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CullInstantShadowPassNear path: Client/Render/FrustumCulling.cs startLine: 24 @@ -149,8 +149,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FrustumCulling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CullInstantShadowPassFar path: Client/Render/FrustumCulling.cs startLine: 25 diff --git a/api/Vintagestory.API.Client.EnumHighlightBlocksMode.yml b/api/Vintagestory.API.Client.EnumHighlightBlocksMode.yml index 3beced78..5d5d3411 100644 --- a/api/Vintagestory.API.Client.EnumHighlightBlocksMode.yml +++ b/api/Vintagestory.API.Client.EnumHighlightBlocksMode.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumHighlightBlocksMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumHighlightBlocksMode path: Client/Render/EnumHighlightBlocksMode.cs startLine: 2 @@ -46,8 +46,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumHighlightBlocksMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Absolute path: Client/Render/EnumHighlightBlocksMode.cs startLine: 4 @@ -72,8 +72,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumHighlightBlocksMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CenteredToSelectedBlock path: Client/Render/EnumHighlightBlocksMode.cs startLine: 5 @@ -98,8 +98,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumHighlightBlocksMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CenteredToSelectedBlockFollowTerrain path: Client/Render/EnumHighlightBlocksMode.cs startLine: 6 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumHighlightBlocksMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AttachedToSelectedBlock path: Client/Render/EnumHighlightBlocksMode.cs startLine: 7 @@ -150,8 +150,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumHighlightBlocksMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CenteredToBlockSelectionIndex path: Client/Render/EnumHighlightBlocksMode.cs startLine: 9 @@ -176,8 +176,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumHighlightBlocksMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AttachedToBlockSelectionIndex path: Client/Render/EnumHighlightBlocksMode.cs startLine: 10 diff --git a/api/Vintagestory.API.Client.EnumItemRenderTarget.yml b/api/Vintagestory.API.Client.EnumItemRenderTarget.yml index 73f2ff93..e6bf6af6 100644 --- a/api/Vintagestory.API.Client.EnumItemRenderTarget.yml +++ b/api/Vintagestory.API.Client.EnumItemRenderTarget.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumItemRenderTarget.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumItemRenderTarget path: Client/Render/EnumItemRenderTarget.cs startLine: 5 @@ -47,8 +47,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumItemRenderTarget.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Gui path: Client/Render/EnumItemRenderTarget.cs startLine: 10 @@ -75,8 +75,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumItemRenderTarget.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HandFp path: Client/Render/EnumItemRenderTarget.cs startLine: 14 @@ -103,8 +103,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumItemRenderTarget.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HandTp path: Client/Render/EnumItemRenderTarget.cs startLine: 18 @@ -131,8 +131,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumItemRenderTarget.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HandTpOff path: Client/Render/EnumItemRenderTarget.cs startLine: 22 @@ -159,8 +159,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumItemRenderTarget.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Ground path: Client/Render/EnumItemRenderTarget.cs startLine: 26 diff --git a/api/Vintagestory.API.Client.EnumItemType.yml b/api/Vintagestory.API.Client.EnumItemType.yml index e6fc1ff9..9c3c39ee 100644 --- a/api/Vintagestory.API.Client.EnumItemType.yml +++ b/api/Vintagestory.API.Client.EnumItemType.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumItemType path: Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs startLine: 7 @@ -42,8 +42,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Item path: Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs startLine: 9 @@ -68,8 +68,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Title path: Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs startLine: 10 diff --git a/api/Vintagestory.API.Client.EnumLinebreakBehavior.yml b/api/Vintagestory.API.Client.EnumLinebreakBehavior.yml index 18a66d17..7d5d2cff 100644 --- a/api/Vintagestory.API.Client.EnumLinebreakBehavior.yml +++ b/api/Vintagestory.API.Client.EnumLinebreakBehavior.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumLinebreakBehavior path: Client/UI/TextDrawUtil.cs startLine: 9 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Default path: Client/UI/TextDrawUtil.cs startLine: 14 @@ -71,8 +71,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AfterWord path: Client/UI/TextDrawUtil.cs startLine: 18 @@ -99,8 +99,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AfterCharacter path: Client/UI/TextDrawUtil.cs startLine: 22 diff --git a/api/Vintagestory.API.Client.EnumLodPool.yml b/api/Vintagestory.API.Client.EnumLodPool.yml index 76f28e01..01b3d3ad 100644 --- a/api/Vintagestory.API.Client.EnumLodPool.yml +++ b/api/Vintagestory.API.Client.EnumLodPool.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FrustumCulling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumLodPool path: Client/Render/FrustumCulling.cs startLine: 241 @@ -54,8 +54,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FrustumCulling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NearbyDetail path: Client/Render/FrustumCulling.cs startLine: 243 @@ -81,8 +81,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FrustumCulling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Everywhere path: Client/Render/FrustumCulling.cs startLine: 244 @@ -108,8 +108,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FrustumCulling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EverywhereExceptFar path: Client/Render/FrustumCulling.cs startLine: 245 @@ -135,8 +135,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FrustumCulling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FarDistanceOnly path: Client/Render/FrustumCulling.cs startLine: 246 diff --git a/api/Vintagestory.API.Client.EnumRenderStage.yml b/api/Vintagestory.API.Client.EnumRenderStage.yml index 0efa17e8..8c2f934c 100644 --- a/api/Vintagestory.API.Client.EnumRenderStage.yml +++ b/api/Vintagestory.API.Client.EnumRenderStage.yml @@ -28,8 +28,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumRenderStage.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumRenderStage path: Client/Render/EnumRenderStage.cs startLine: 2 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumRenderStage.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Before path: Client/Render/EnumRenderStage.cs startLine: 7 @@ -81,8 +81,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumRenderStage.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Opaque path: Client/Render/EnumRenderStage.cs startLine: 11 @@ -109,8 +109,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumRenderStage.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OIT path: Client/Render/EnumRenderStage.cs startLine: 15 @@ -137,8 +137,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumRenderStage.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AfterOIT path: Client/Render/EnumRenderStage.cs startLine: 19 @@ -165,8 +165,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumRenderStage.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShadowFar path: Client/Render/EnumRenderStage.cs startLine: 23 @@ -193,8 +193,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumRenderStage.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShadowFarDone path: Client/Render/EnumRenderStage.cs startLine: 27 @@ -221,8 +221,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumRenderStage.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShadowNear path: Client/Render/EnumRenderStage.cs startLine: 32 @@ -249,8 +249,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumRenderStage.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShadowNearDone path: Client/Render/EnumRenderStage.cs startLine: 36 @@ -277,8 +277,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumRenderStage.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AfterPostProcessing path: Client/Render/EnumRenderStage.cs startLine: 41 @@ -305,8 +305,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumRenderStage.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AfterBlit path: Client/Render/EnumRenderStage.cs startLine: 45 @@ -333,8 +333,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumRenderStage.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Ortho path: Client/Render/EnumRenderStage.cs startLine: 49 @@ -361,8 +361,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumRenderStage.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AfterFinalComposition path: Client/Render/EnumRenderStage.cs startLine: 53 @@ -389,8 +389,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumRenderStage.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Done path: Client/Render/EnumRenderStage.cs startLine: 57 diff --git a/api/Vintagestory.API.Client.EnumShaderProgram.yml b/api/Vintagestory.API.Client.EnumShaderProgram.yml index f4124cfd..176a453d 100644 --- a/api/Vintagestory.API.Client.EnumShaderProgram.yml +++ b/api/Vintagestory.API.Client.EnumShaderProgram.yml @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumShaderProgram path: Client/Render/EnumShaderProgram.cs startLine: 3 @@ -77,8 +77,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Standard path: Client/Render/EnumShaderProgram.cs startLine: 8 @@ -105,8 +105,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Particlescube path: Client/Render/EnumShaderProgram.cs startLine: 12 @@ -133,8 +133,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Particlesquad path: Client/Render/EnumShaderProgram.cs startLine: 16 @@ -161,8 +161,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sky path: Client/Render/EnumShaderProgram.cs startLine: 21 @@ -189,8 +189,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Nightsky path: Client/Render/EnumShaderProgram.cs startLine: 25 @@ -217,8 +217,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Woittest path: Client/Render/EnumShaderProgram.cs startLine: 29 @@ -245,8 +245,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Transparentcompose path: Client/Render/EnumShaderProgram.cs startLine: 33 @@ -273,8 +273,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Debugdepthbuffer path: Client/Render/EnumShaderProgram.cs startLine: 37 @@ -301,8 +301,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Helditem path: Client/Render/EnumShaderProgram.cs startLine: 41 @@ -329,8 +329,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Chunkopaque path: Client/Render/EnumShaderProgram.cs startLine: 45 @@ -357,8 +357,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MultiTextureTest path: Client/Render/EnumShaderProgram.cs startLine: 49 @@ -385,8 +385,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Chunkliquid path: Client/Render/EnumShaderProgram.cs startLine: 53 @@ -413,8 +413,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Decals path: Client/Render/EnumShaderProgram.cs startLine: 57 @@ -441,8 +441,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Final path: Client/Render/EnumShaderProgram.cs startLine: 61 @@ -469,8 +469,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Gui path: Client/Render/EnumShaderProgram.cs startLine: 65 @@ -497,8 +497,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Blur path: Client/Render/EnumShaderProgram.cs startLine: 69 @@ -525,8 +525,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Chunktransparent path: Client/Render/EnumShaderProgram.cs startLine: 73 @@ -553,8 +553,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Findbright path: Client/Render/EnumShaderProgram.cs startLine: 77 @@ -581,8 +581,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Chunktopsoil path: Client/Render/EnumShaderProgram.cs startLine: 81 @@ -609,8 +609,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Godrays path: Client/Render/EnumShaderProgram.cs startLine: 85 @@ -637,8 +637,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Autocamera path: Client/Render/EnumShaderProgram.cs startLine: 89 @@ -665,8 +665,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Blockhighlights path: Client/Render/EnumShaderProgram.cs startLine: 93 @@ -693,8 +693,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Wireframe path: Client/Render/EnumShaderProgram.cs startLine: 97 @@ -721,8 +721,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Entityanimated path: Client/Render/EnumShaderProgram.cs startLine: 101 @@ -749,8 +749,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Luma path: Client/Render/EnumShaderProgram.cs startLine: 105 @@ -777,8 +777,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Blit path: Client/Render/EnumShaderProgram.cs startLine: 106 @@ -803,8 +803,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Shadowmap path: Client/Render/EnumShaderProgram.cs startLine: 107 @@ -829,8 +829,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Particlesquad2d path: Client/Render/EnumShaderProgram.cs startLine: 108 @@ -855,8 +855,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Shadowmapentityanimated path: Client/Render/EnumShaderProgram.cs startLine: 109 @@ -881,8 +881,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Shadowmapgeneric path: Client/Render/EnumShaderProgram.cs startLine: 110 @@ -907,8 +907,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Texture2texture path: Client/Render/EnumShaderProgram.cs startLine: 111 @@ -933,8 +933,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Celestialobject path: Client/Render/EnumShaderProgram.cs startLine: 112 @@ -959,8 +959,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Guitopsoil path: Client/Render/EnumShaderProgram.cs startLine: 113 @@ -985,8 +985,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Colorgrade path: Client/Render/EnumShaderProgram.cs startLine: 114 @@ -1011,8 +1011,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Guigear path: Client/Render/EnumShaderProgram.cs startLine: 115 @@ -1037,8 +1037,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Ssao path: Client/Render/EnumShaderProgram.cs startLine: 116 @@ -1063,8 +1063,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/EnumShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Bilateralblur path: Client/Render/EnumShaderProgram.cs startLine: 117 diff --git a/api/Vintagestory.API.Client.EnumShaderType.yml b/api/Vintagestory.API.Client.EnumShaderType.yml index 149f92fb..6b121379 100644 --- a/api/Vintagestory.API.Client.EnumShaderType.yml +++ b/api/Vintagestory.API.Client.EnumShaderType.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumShaderType path: Client/Render/IShaderProgram.cs startLine: 5 @@ -47,8 +47,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FragmentShader path: Client/Render/IShaderProgram.cs startLine: 7 @@ -73,8 +73,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VertexShader path: Client/Render/IShaderProgram.cs startLine: 8 @@ -99,8 +99,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GeometryShader path: Client/Render/IShaderProgram.cs startLine: 9 @@ -125,8 +125,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GeometryShaderExt path: Client/Render/IShaderProgram.cs startLine: 10 @@ -151,8 +151,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TessEvaluationShader path: Client/Render/IShaderProgram.cs startLine: 11 @@ -177,8 +177,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TessControlShader path: Client/Render/IShaderProgram.cs startLine: 12 @@ -203,8 +203,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComputeShader path: Client/Render/IShaderProgram.cs startLine: 13 diff --git a/api/Vintagestory.API.Client.EnumSoundType.yml b/api/Vintagestory.API.Client.EnumSoundType.yml index adbb3ab0..824ae1e8 100644 --- a/api/Vintagestory.API.Client.EnumSoundType.yml +++ b/api/Vintagestory.API.Client.EnumSoundType.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SoundParams.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumSoundType path: Client/Audio/SoundParams.cs startLine: 5 @@ -48,8 +48,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SoundParams.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sound path: Client/Audio/SoundParams.cs startLine: 7 @@ -74,8 +74,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SoundParams.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Music path: Client/Audio/SoundParams.cs startLine: 8 @@ -100,8 +100,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SoundParams.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Ambient path: Client/Audio/SoundParams.cs startLine: 9 @@ -126,8 +126,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SoundParams.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Weather path: Client/Audio/SoundParams.cs startLine: 10 @@ -152,8 +152,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SoundParams.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Entity path: Client/Audio/SoundParams.cs startLine: 11 @@ -178,8 +178,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SoundParams.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MusicGlitchunaffected path: Client/Audio/SoundParams.cs startLine: 12 @@ -204,8 +204,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SoundParams.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AmbientGlitchunaffected path: Client/Audio/SoundParams.cs startLine: 13 @@ -230,8 +230,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SoundParams.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SoundGlitchunaffected path: Client/Audio/SoundParams.cs startLine: 14 diff --git a/api/Vintagestory.API.Client.EnumTextOrientation.yml b/api/Vintagestory.API.Client.EnumTextOrientation.yml index 6c9f8bf2..715cd7d1 100644 --- a/api/Vintagestory.API.Client.EnumTextOrientation.yml +++ b/api/Vintagestory.API.Client.EnumTextOrientation.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/EnumTextOrientation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumTextOrientation path: Client/UI/EnumTextOrientation.cs startLine: 2 @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/EnumTextOrientation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Left path: Client/UI/EnumTextOrientation.cs startLine: 4 @@ -70,8 +70,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/EnumTextOrientation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Right path: Client/UI/EnumTextOrientation.cs startLine: 5 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/EnumTextOrientation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Center path: Client/UI/EnumTextOrientation.cs startLine: 6 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/EnumTextOrientation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Justify path: Client/UI/EnumTextOrientation.cs startLine: 7 diff --git a/api/Vintagestory.API.Client.EnumTextureFilter.yml b/api/Vintagestory.API.Client.EnumTextureFilter.yml index 9a52a15a..b5422860 100644 --- a/api/Vintagestory.API.Client.EnumTextureFilter.yml +++ b/api/Vintagestory.API.Client.EnumTextureFilter.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumTextureFilter path: Client/Render/FramebufferData.cs startLine: 2 @@ -42,8 +42,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Linear path: Client/Render/FramebufferData.cs startLine: 4 @@ -68,8 +68,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Nearest path: Client/Render/FramebufferData.cs startLine: 5 diff --git a/api/Vintagestory.API.Client.EnumTextureInternalFormat.yml b/api/Vintagestory.API.Client.EnumTextureInternalFormat.yml index f1f25119..1f8a1736 100644 --- a/api/Vintagestory.API.Client.EnumTextureInternalFormat.yml +++ b/api/Vintagestory.API.Client.EnumTextureInternalFormat.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumTextureInternalFormat path: Client/Render/FramebufferData.cs startLine: 14 @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DepthComponent32 path: Client/Render/FramebufferData.cs startLine: 16 @@ -70,8 +70,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rgba16f path: Client/Render/FramebufferData.cs startLine: 17 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rgba8 path: Client/Render/FramebufferData.cs startLine: 18 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: R16f path: Client/Render/FramebufferData.cs startLine: 19 diff --git a/api/Vintagestory.API.Client.EnumTexturePixelFormat.yml b/api/Vintagestory.API.Client.EnumTexturePixelFormat.yml index 6b0b37d9..0881a9f1 100644 --- a/api/Vintagestory.API.Client.EnumTexturePixelFormat.yml +++ b/api/Vintagestory.API.Client.EnumTexturePixelFormat.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumTexturePixelFormat path: Client/Render/FramebufferData.cs startLine: 22 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DepthComponent path: Client/Render/FramebufferData.cs startLine: 24 @@ -69,8 +69,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rgba path: Client/Render/FramebufferData.cs startLine: 25 @@ -95,8 +95,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Red path: Client/Render/FramebufferData.cs startLine: 26 diff --git a/api/Vintagestory.API.Client.EnumTextureWrap.yml b/api/Vintagestory.API.Client.EnumTextureWrap.yml index f76336d5..321ec747 100644 --- a/api/Vintagestory.API.Client.EnumTextureWrap.yml +++ b/api/Vintagestory.API.Client.EnumTextureWrap.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumTextureWrap path: Client/Render/FramebufferData.cs startLine: 8 @@ -42,8 +42,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Repeat path: Client/Render/FramebufferData.cs startLine: 10 @@ -68,8 +68,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClampToEdge path: Client/Render/FramebufferData.cs startLine: 11 diff --git a/api/Vintagestory.API.Client.EnumVelocityState.yml b/api/Vintagestory.API.Client.EnumVelocityState.yml index b959a12a..8cbfd330 100644 --- a/api/Vintagestory.API.Client.EnumVelocityState.yml +++ b/api/Vintagestory.API.Client.EnumVelocityState.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Client/ParticlePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumVelocityState path: Client/ParticlePhysics.cs startLine: 7 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Client/ParticlePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Moving path: Client/ParticlePhysics.cs startLine: 12 @@ -71,8 +71,8 @@ items: source: remote: path: VintagestoryApi/Client/ParticlePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OutsideWorld path: Client/ParticlePhysics.cs startLine: 16 @@ -99,8 +99,8 @@ items: source: remote: path: VintagestoryApi/Client/ParticlePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Collided path: Client/ParticlePhysics.cs startLine: 20 diff --git a/api/Vintagestory.API.Client.EnumVerticalAlign.yml b/api/Vintagestory.API.Client.EnumVerticalAlign.yml index da2c48a2..846313fc 100644 --- a/api/Vintagestory.API.Client.EnumVerticalAlign.yml +++ b/api/Vintagestory.API.Client.EnumVerticalAlign.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumVerticalAlign path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs startLine: 13 @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Top path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs startLine: 15 @@ -70,8 +70,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Middle path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs startLine: 16 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Bottom path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs startLine: 17 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FixedOffset path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs startLine: 18 diff --git a/api/Vintagestory.API.Client.EventMusicTrack.yml b/api/Vintagestory.API.Client.EventMusicTrack.yml index fd60ff7f..3ba077dc 100644 --- a/api/Vintagestory.API.Client.EventMusicTrack.yml +++ b/api/Vintagestory.API.Client.EventMusicTrack.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/EventMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EventMusicTrack path: Client/Audio/EventMusicTrack.cs startLine: 7 @@ -107,8 +107,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/EventMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SchematicCode path: Client/Audio/EventMusicTrack.cs startLine: 11 @@ -144,8 +144,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/EventMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Initialize path: Client/Audio/EventMusicTrack.cs startLine: 13 @@ -183,8 +183,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/EventMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldPlay path: Client/Audio/EventMusicTrack.cs startLine: 19 diff --git a/api/Vintagestory.API.Client.FastBitmap.yml b/api/Vintagestory.API.Client.FastBitmap.yml index 41dd88ba..a58a9dea 100644 --- a/api/Vintagestory.API.Client.FastBitmap.yml +++ b/api/Vintagestory.API.Client.FastBitmap.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/FastBitmap.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FastBitmap path: Client/Texture/FastBitmap.cs startLine: 4 @@ -55,8 +55,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/FastBitmap.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: _bmp path: Client/Texture/FastBitmap.cs startLine: 8 @@ -82,8 +82,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/FastBitmap.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: bmp path: Client/Texture/FastBitmap.cs startLine: 10 @@ -111,8 +111,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/FastBitmap.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Stride path: Client/Texture/FastBitmap.cs startLine: 20 @@ -140,8 +140,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/FastBitmap.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetPixel path: Client/Texture/FastBitmap.cs startLine: 22 @@ -176,8 +176,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/FastBitmap.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetPixel path: Client/Texture/FastBitmap.cs startLine: 42 diff --git a/api/Vintagestory.API.Client.FileDropDelegate.yml b/api/Vintagestory.API.Client.FileDropDelegate.yml index 26170d35..bf2c7c4c 100644 --- a/api/Vintagestory.API.Client.FileDropDelegate.yml +++ b/api/Vintagestory.API.Client.FileDropDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FileDropDelegate path: Client/API/IClientEventAPI.cs startLine: 12 diff --git a/api/Vintagestory.API.Client.FileDropEvent.yml b/api/Vintagestory.API.Client.FileDropEvent.yml index 2cf9a4da..9f6acadd 100644 --- a/api/Vintagestory.API.Client.FileDropEvent.yml +++ b/api/Vintagestory.API.Client.FileDropEvent.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FileDropEvent path: Client/API/IClientEventAPI.cs startLine: 63 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Filename path: Client/API/IClientEventAPI.cs startLine: 65 @@ -79,8 +79,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Handled path: Client/API/IClientEventAPI.cs startLine: 66 diff --git a/api/Vintagestory.API.Client.FontConfig.yml b/api/Vintagestory.API.Client.FontConfig.yml index 66e53f45..38db10a5 100644 --- a/api/Vintagestory.API.Client.FontConfig.yml +++ b/api/Vintagestory.API.Client.FontConfig.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/FontConfig.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FontConfig path: Client/UI/FontConfig.cs startLine: 2 @@ -58,8 +58,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/FontConfig.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UnscaledFontsize path: Client/UI/FontConfig.cs startLine: 7 @@ -87,8 +87,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/FontConfig.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Fontname path: Client/UI/FontConfig.cs startLine: 12 @@ -116,8 +116,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/FontConfig.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FontWeight path: Client/UI/FontConfig.cs startLine: 17 @@ -145,8 +145,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/FontConfig.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Color path: Client/UI/FontConfig.cs startLine: 22 @@ -174,8 +174,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/FontConfig.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StrokeColor path: Client/UI/FontConfig.cs startLine: 27 @@ -203,8 +203,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/FontConfig.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StrokeWidth path: Client/UI/FontConfig.cs startLine: 32 diff --git a/api/Vintagestory.API.Client.FrameBufferRef.yml b/api/Vintagestory.API.Client.FrameBufferRef.yml index b29bf76b..56857346 100644 --- a/api/Vintagestory.API.Client.FrameBufferRef.yml +++ b/api/Vintagestory.API.Client.FrameBufferRef.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FrameBufferRef path: Client/Render/FramebufferRef.cs startLine: 2 @@ -56,8 +56,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FbAttrs path: Client/Render/FramebufferRef.cs startLine: 4 @@ -83,8 +83,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FboId path: Client/Render/FramebufferRef.cs startLine: 5 @@ -110,8 +110,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DepthTextureId path: Client/Render/FramebufferRef.cs startLine: 6 @@ -137,8 +137,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorTextureIds path: Client/Render/FramebufferRef.cs startLine: 7 @@ -164,8 +164,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Width path: Client/Render/FramebufferRef.cs startLine: 9 @@ -191,8 +191,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Height path: Client/Render/FramebufferRef.cs startLine: 10 diff --git a/api/Vintagestory.API.Client.FramebufferAttrs.yml b/api/Vintagestory.API.Client.FramebufferAttrs.yml index c6eb2591..8f89665a 100644 --- a/api/Vintagestory.API.Client.FramebufferAttrs.yml +++ b/api/Vintagestory.API.Client.FramebufferAttrs.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FramebufferAttrs path: Client/Render/FramebufferData.cs startLine: 64 @@ -55,8 +55,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Name path: Client/Render/FramebufferData.cs startLine: 66 @@ -82,8 +82,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Attachments path: Client/Render/FramebufferData.cs startLine: 68 @@ -109,8 +109,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Width path: Client/Render/FramebufferData.cs startLine: 70 @@ -136,8 +136,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Height path: Client/Render/FramebufferData.cs startLine: 71 @@ -163,8 +163,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Render/FramebufferData.cs startLine: 73 diff --git a/api/Vintagestory.API.Client.FramebufferAttrsAttachment.yml b/api/Vintagestory.API.Client.FramebufferAttrsAttachment.yml index ac9e3832..3949d3c8 100644 --- a/api/Vintagestory.API.Client.FramebufferAttrsAttachment.yml +++ b/api/Vintagestory.API.Client.FramebufferAttrsAttachment.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FramebufferAttrsAttachment path: Client/Render/FramebufferData.cs startLine: 56 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Texture path: Client/Render/FramebufferData.cs startLine: 58 @@ -79,8 +79,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AttachmentType path: Client/Render/FramebufferData.cs startLine: 60 diff --git a/api/Vintagestory.API.Client.FreezingPerceptionEffect.yml b/api/Vintagestory.API.Client.FreezingPerceptionEffect.yml index 2fb81fdc..13b95b06 100644 --- a/api/Vintagestory.API.Client.FreezingPerceptionEffect.yml +++ b/api/Vintagestory.API.Client.FreezingPerceptionEffect.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/FreezingPerceptionEffect.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FreezingPerceptionEffect path: Client/Render/PerceptionEffects/FreezingPerceptionEffect.cs startLine: 5 @@ -63,8 +63,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/FreezingPerceptionEffect.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Render/PerceptionEffects/FreezingPerceptionEffect.cs startLine: 10 @@ -95,8 +95,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/FreezingPerceptionEffect.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBeforeGameRender path: Client/Render/PerceptionEffects/FreezingPerceptionEffect.cs startLine: 15 diff --git a/api/Vintagestory.API.Client.FrustumCulling.yml b/api/Vintagestory.API.Client.FrustumCulling.yml index 12878f83..d8744366 100644 --- a/api/Vintagestory.API.Client.FrustumCulling.yml +++ b/api/Vintagestory.API.Client.FrustumCulling.yml @@ -26,8 +26,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FrustumCulling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FrustumCulling path: Client/Render/FrustumCulling.cs startLine: 75 @@ -61,8 +61,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FrustumCulling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ViewDistanceSq path: Client/Render/FrustumCulling.cs startLine: 77 @@ -88,8 +88,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FrustumCulling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: lod0BiasSq path: Client/Render/FrustumCulling.cs startLine: 79 @@ -115,8 +115,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FrustumCulling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: lod2BiasSq path: Client/Render/FrustumCulling.cs startLine: 81 @@ -144,8 +144,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FrustumCulling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: shadowRangeX path: Client/Render/FrustumCulling.cs startLine: 82 @@ -171,8 +171,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FrustumCulling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: shadowRangeZ path: Client/Render/FrustumCulling.cs startLine: 83 @@ -198,8 +198,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FrustumCulling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UpdateViewDistance path: Client/Render/FrustumCulling.cs startLine: 90 @@ -230,8 +230,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FrustumCulling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SphereInFrustum path: Client/Render/FrustumCulling.cs startLine: 95 @@ -270,8 +270,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FrustumCulling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InFrustum path: Client/Render/FrustumCulling.cs startLine: 108 @@ -301,8 +301,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FrustumCulling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InFrustumShadowPass path: Client/Render/FrustumCulling.cs startLine: 121 @@ -332,8 +332,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FrustumCulling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InFrustumAndRange path: Client/Render/FrustumCulling.cs startLine: 138 @@ -370,8 +370,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FrustumCulling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CalcFrustumEquations path: Client/Render/FrustumCulling.cs startLine: 170 diff --git a/api/Vintagestory.API.Client.GlKeyNames.yml b/api/Vintagestory.API.Client.GlKeyNames.yml index be9d8ad5..a841ce71 100644 --- a/api/Vintagestory.API.Client.GlKeyNames.yml +++ b/api/Vintagestory.API.Client.GlKeyNames.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GlKeyNames path: Client/Input/EnumGlKeys.cs startLine: 4 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Client/Input/EnumGlKeys.cs startLine: 11 @@ -88,8 +88,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetKeyName path: Client/Input/EnumGlKeys.cs startLine: 46 @@ -126,8 +126,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetPrintableChar path: Client/Input/EnumGlKeys.cs startLine: 61 diff --git a/api/Vintagestory.API.Client.GlKeys.yml b/api/Vintagestory.API.Client.GlKeys.yml index 7292395b..f39a56d7 100644 --- a/api/Vintagestory.API.Client.GlKeys.yml +++ b/api/Vintagestory.API.Client.GlKeys.yml @@ -159,8 +159,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GlKeys path: Client/Input/EnumGlKeys.cs startLine: 219 @@ -192,8 +192,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Unknown path: Client/Input/EnumGlKeys.cs startLine: 221 @@ -218,8 +218,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LShift path: Client/Input/EnumGlKeys.cs startLine: 222 @@ -244,8 +244,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShiftLeft path: Client/Input/EnumGlKeys.cs startLine: 223 @@ -270,8 +270,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RShift path: Client/Input/EnumGlKeys.cs startLine: 224 @@ -296,8 +296,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShiftRight path: Client/Input/EnumGlKeys.cs startLine: 225 @@ -322,8 +322,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LControl path: Client/Input/EnumGlKeys.cs startLine: 226 @@ -348,8 +348,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ControlLeft path: Client/Input/EnumGlKeys.cs startLine: 227 @@ -374,8 +374,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RControl path: Client/Input/EnumGlKeys.cs startLine: 228 @@ -400,8 +400,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ControlRight path: Client/Input/EnumGlKeys.cs startLine: 229 @@ -426,8 +426,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AltLeft path: Client/Input/EnumGlKeys.cs startLine: 230 @@ -452,8 +452,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LAlt path: Client/Input/EnumGlKeys.cs startLine: 231 @@ -478,8 +478,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AltRight path: Client/Input/EnumGlKeys.cs startLine: 232 @@ -504,8 +504,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RAlt path: Client/Input/EnumGlKeys.cs startLine: 233 @@ -530,8 +530,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WinLeft path: Client/Input/EnumGlKeys.cs startLine: 234 @@ -556,8 +556,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LWin path: Client/Input/EnumGlKeys.cs startLine: 235 @@ -582,8 +582,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RWin path: Client/Input/EnumGlKeys.cs startLine: 236 @@ -608,8 +608,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WinRight path: Client/Input/EnumGlKeys.cs startLine: 237 @@ -634,8 +634,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Menu path: Client/Input/EnumGlKeys.cs startLine: 238 @@ -660,8 +660,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F1 path: Client/Input/EnumGlKeys.cs startLine: 239 @@ -686,8 +686,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F2 path: Client/Input/EnumGlKeys.cs startLine: 240 @@ -712,8 +712,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F3 path: Client/Input/EnumGlKeys.cs startLine: 241 @@ -738,8 +738,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F4 path: Client/Input/EnumGlKeys.cs startLine: 242 @@ -764,8 +764,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F5 path: Client/Input/EnumGlKeys.cs startLine: 243 @@ -790,8 +790,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F6 path: Client/Input/EnumGlKeys.cs startLine: 244 @@ -816,8 +816,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F7 path: Client/Input/EnumGlKeys.cs startLine: 245 @@ -842,8 +842,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F8 path: Client/Input/EnumGlKeys.cs startLine: 246 @@ -868,8 +868,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F9 path: Client/Input/EnumGlKeys.cs startLine: 247 @@ -894,8 +894,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F10 path: Client/Input/EnumGlKeys.cs startLine: 248 @@ -920,8 +920,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F11 path: Client/Input/EnumGlKeys.cs startLine: 249 @@ -946,8 +946,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F12 path: Client/Input/EnumGlKeys.cs startLine: 250 @@ -972,8 +972,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F13 path: Client/Input/EnumGlKeys.cs startLine: 251 @@ -998,8 +998,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F14 path: Client/Input/EnumGlKeys.cs startLine: 252 @@ -1024,8 +1024,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F15 path: Client/Input/EnumGlKeys.cs startLine: 253 @@ -1050,8 +1050,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F16 path: Client/Input/EnumGlKeys.cs startLine: 254 @@ -1076,8 +1076,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F17 path: Client/Input/EnumGlKeys.cs startLine: 255 @@ -1102,8 +1102,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F18 path: Client/Input/EnumGlKeys.cs startLine: 256 @@ -1128,8 +1128,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F19 path: Client/Input/EnumGlKeys.cs startLine: 257 @@ -1154,8 +1154,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F20 path: Client/Input/EnumGlKeys.cs startLine: 258 @@ -1180,8 +1180,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F21 path: Client/Input/EnumGlKeys.cs startLine: 259 @@ -1206,8 +1206,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F22 path: Client/Input/EnumGlKeys.cs startLine: 260 @@ -1232,8 +1232,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F23 path: Client/Input/EnumGlKeys.cs startLine: 261 @@ -1258,8 +1258,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F24 path: Client/Input/EnumGlKeys.cs startLine: 262 @@ -1284,8 +1284,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F25 path: Client/Input/EnumGlKeys.cs startLine: 263 @@ -1310,8 +1310,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F26 path: Client/Input/EnumGlKeys.cs startLine: 264 @@ -1336,8 +1336,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F27 path: Client/Input/EnumGlKeys.cs startLine: 265 @@ -1362,8 +1362,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F28 path: Client/Input/EnumGlKeys.cs startLine: 266 @@ -1388,8 +1388,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F29 path: Client/Input/EnumGlKeys.cs startLine: 267 @@ -1414,8 +1414,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F30 path: Client/Input/EnumGlKeys.cs startLine: 268 @@ -1440,8 +1440,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F31 path: Client/Input/EnumGlKeys.cs startLine: 269 @@ -1466,8 +1466,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F32 path: Client/Input/EnumGlKeys.cs startLine: 270 @@ -1492,8 +1492,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F33 path: Client/Input/EnumGlKeys.cs startLine: 271 @@ -1518,8 +1518,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F34 path: Client/Input/EnumGlKeys.cs startLine: 272 @@ -1544,8 +1544,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F35 path: Client/Input/EnumGlKeys.cs startLine: 273 @@ -1570,8 +1570,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Up path: Client/Input/EnumGlKeys.cs startLine: 274 @@ -1596,8 +1596,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Down path: Client/Input/EnumGlKeys.cs startLine: 275 @@ -1622,8 +1622,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Left path: Client/Input/EnumGlKeys.cs startLine: 276 @@ -1648,8 +1648,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Right path: Client/Input/EnumGlKeys.cs startLine: 277 @@ -1674,8 +1674,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Enter path: Client/Input/EnumGlKeys.cs startLine: 278 @@ -1700,8 +1700,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Escape path: Client/Input/EnumGlKeys.cs startLine: 279 @@ -1726,8 +1726,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Space path: Client/Input/EnumGlKeys.cs startLine: 280 @@ -1752,8 +1752,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Tab path: Client/Input/EnumGlKeys.cs startLine: 281 @@ -1778,8 +1778,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Back path: Client/Input/EnumGlKeys.cs startLine: 282 @@ -1804,8 +1804,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BackSpace path: Client/Input/EnumGlKeys.cs startLine: 283 @@ -1830,8 +1830,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Insert path: Client/Input/EnumGlKeys.cs startLine: 284 @@ -1856,8 +1856,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Delete path: Client/Input/EnumGlKeys.cs startLine: 285 @@ -1882,8 +1882,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PageUp path: Client/Input/EnumGlKeys.cs startLine: 286 @@ -1908,8 +1908,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PageDown path: Client/Input/EnumGlKeys.cs startLine: 287 @@ -1934,8 +1934,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Home path: Client/Input/EnumGlKeys.cs startLine: 288 @@ -1960,8 +1960,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: End path: Client/Input/EnumGlKeys.cs startLine: 289 @@ -1986,8 +1986,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CapsLock path: Client/Input/EnumGlKeys.cs startLine: 290 @@ -2012,8 +2012,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ScrollLock path: Client/Input/EnumGlKeys.cs startLine: 291 @@ -2038,8 +2038,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PrintScreen path: Client/Input/EnumGlKeys.cs startLine: 292 @@ -2064,8 +2064,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pause path: Client/Input/EnumGlKeys.cs startLine: 293 @@ -2090,8 +2090,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NumLock path: Client/Input/EnumGlKeys.cs startLine: 294 @@ -2116,8 +2116,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clear path: Client/Input/EnumGlKeys.cs startLine: 295 @@ -2142,8 +2142,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sleep path: Client/Input/EnumGlKeys.cs startLine: 296 @@ -2168,8 +2168,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Keypad0 path: Client/Input/EnumGlKeys.cs startLine: 297 @@ -2194,8 +2194,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Keypad1 path: Client/Input/EnumGlKeys.cs startLine: 298 @@ -2220,8 +2220,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Keypad2 path: Client/Input/EnumGlKeys.cs startLine: 299 @@ -2246,8 +2246,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Keypad3 path: Client/Input/EnumGlKeys.cs startLine: 300 @@ -2272,8 +2272,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Keypad4 path: Client/Input/EnumGlKeys.cs startLine: 301 @@ -2298,8 +2298,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Keypad5 path: Client/Input/EnumGlKeys.cs startLine: 302 @@ -2324,8 +2324,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Keypad6 path: Client/Input/EnumGlKeys.cs startLine: 303 @@ -2350,8 +2350,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Keypad7 path: Client/Input/EnumGlKeys.cs startLine: 304 @@ -2376,8 +2376,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Keypad8 path: Client/Input/EnumGlKeys.cs startLine: 305 @@ -2402,8 +2402,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Keypad9 path: Client/Input/EnumGlKeys.cs startLine: 306 @@ -2428,8 +2428,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: KeypadDivide path: Client/Input/EnumGlKeys.cs startLine: 307 @@ -2454,8 +2454,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: KeypadMultiply path: Client/Input/EnumGlKeys.cs startLine: 308 @@ -2480,8 +2480,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: KeypadMinus path: Client/Input/EnumGlKeys.cs startLine: 309 @@ -2506,8 +2506,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: KeypadSubtract path: Client/Input/EnumGlKeys.cs startLine: 310 @@ -2532,8 +2532,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: KeypadAdd path: Client/Input/EnumGlKeys.cs startLine: 311 @@ -2558,8 +2558,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: KeypadPlus path: Client/Input/EnumGlKeys.cs startLine: 312 @@ -2584,8 +2584,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: KeypadDecimal path: Client/Input/EnumGlKeys.cs startLine: 313 @@ -2610,8 +2610,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: KeypadEnter path: Client/Input/EnumGlKeys.cs startLine: 314 @@ -2636,8 +2636,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: A path: Client/Input/EnumGlKeys.cs startLine: 315 @@ -2662,8 +2662,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: B path: Client/Input/EnumGlKeys.cs startLine: 316 @@ -2688,8 +2688,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: C path: Client/Input/EnumGlKeys.cs startLine: 317 @@ -2714,8 +2714,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: D path: Client/Input/EnumGlKeys.cs startLine: 318 @@ -2740,8 +2740,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: E path: Client/Input/EnumGlKeys.cs startLine: 319 @@ -2766,8 +2766,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: F path: Client/Input/EnumGlKeys.cs startLine: 320 @@ -2792,8 +2792,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: G path: Client/Input/EnumGlKeys.cs startLine: 321 @@ -2818,8 +2818,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: H path: Client/Input/EnumGlKeys.cs startLine: 322 @@ -2844,8 +2844,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: I path: Client/Input/EnumGlKeys.cs startLine: 323 @@ -2870,8 +2870,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: J path: Client/Input/EnumGlKeys.cs startLine: 324 @@ -2896,8 +2896,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: K path: Client/Input/EnumGlKeys.cs startLine: 325 @@ -2922,8 +2922,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: L path: Client/Input/EnumGlKeys.cs startLine: 326 @@ -2948,8 +2948,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: M path: Client/Input/EnumGlKeys.cs startLine: 327 @@ -2974,8 +2974,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: N path: Client/Input/EnumGlKeys.cs startLine: 328 @@ -3000,8 +3000,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: O path: Client/Input/EnumGlKeys.cs startLine: 329 @@ -3026,8 +3026,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: P path: Client/Input/EnumGlKeys.cs startLine: 330 @@ -3052,8 +3052,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Q path: Client/Input/EnumGlKeys.cs startLine: 331 @@ -3078,8 +3078,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: R path: Client/Input/EnumGlKeys.cs startLine: 332 @@ -3104,8 +3104,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: S path: Client/Input/EnumGlKeys.cs startLine: 333 @@ -3130,8 +3130,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: T path: Client/Input/EnumGlKeys.cs startLine: 334 @@ -3156,8 +3156,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: U path: Client/Input/EnumGlKeys.cs startLine: 335 @@ -3182,8 +3182,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: V path: Client/Input/EnumGlKeys.cs startLine: 336 @@ -3208,8 +3208,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: W path: Client/Input/EnumGlKeys.cs startLine: 337 @@ -3234,8 +3234,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X path: Client/Input/EnumGlKeys.cs startLine: 338 @@ -3260,8 +3260,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y path: Client/Input/EnumGlKeys.cs startLine: 339 @@ -3286,8 +3286,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Z path: Client/Input/EnumGlKeys.cs startLine: 340 @@ -3312,8 +3312,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Number0 path: Client/Input/EnumGlKeys.cs startLine: 341 @@ -3338,8 +3338,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Number1 path: Client/Input/EnumGlKeys.cs startLine: 342 @@ -3364,8 +3364,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Number2 path: Client/Input/EnumGlKeys.cs startLine: 343 @@ -3390,8 +3390,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Number3 path: Client/Input/EnumGlKeys.cs startLine: 344 @@ -3416,8 +3416,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Number4 path: Client/Input/EnumGlKeys.cs startLine: 345 @@ -3442,8 +3442,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Number5 path: Client/Input/EnumGlKeys.cs startLine: 346 @@ -3468,8 +3468,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Number6 path: Client/Input/EnumGlKeys.cs startLine: 347 @@ -3494,8 +3494,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Number7 path: Client/Input/EnumGlKeys.cs startLine: 348 @@ -3520,8 +3520,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Number8 path: Client/Input/EnumGlKeys.cs startLine: 349 @@ -3546,8 +3546,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Number9 path: Client/Input/EnumGlKeys.cs startLine: 350 @@ -3572,8 +3572,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Tilde path: Client/Input/EnumGlKeys.cs startLine: 351 @@ -3598,8 +3598,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Minus path: Client/Input/EnumGlKeys.cs startLine: 352 @@ -3624,8 +3624,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Plus path: Client/Input/EnumGlKeys.cs startLine: 353 @@ -3650,8 +3650,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LBracket path: Client/Input/EnumGlKeys.cs startLine: 354 @@ -3676,8 +3676,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BracketLeft path: Client/Input/EnumGlKeys.cs startLine: 355 @@ -3702,8 +3702,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BracketRight path: Client/Input/EnumGlKeys.cs startLine: 356 @@ -3728,8 +3728,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RBracket path: Client/Input/EnumGlKeys.cs startLine: 357 @@ -3754,8 +3754,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Semicolon path: Client/Input/EnumGlKeys.cs startLine: 358 @@ -3780,8 +3780,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Quote path: Client/Input/EnumGlKeys.cs startLine: 359 @@ -3806,8 +3806,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Comma path: Client/Input/EnumGlKeys.cs startLine: 360 @@ -3832,8 +3832,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Period path: Client/Input/EnumGlKeys.cs startLine: 361 @@ -3858,8 +3858,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Slash path: Client/Input/EnumGlKeys.cs startLine: 362 @@ -3884,8 +3884,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BackSlash path: Client/Input/EnumGlKeys.cs startLine: 363 @@ -3910,8 +3910,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LastKey path: Client/Input/EnumGlKeys.cs startLine: 364 diff --git a/api/Vintagestory.API.Client.GridRecipeAndUnnamedIngredients.yml b/api/Vintagestory.API.Client.GridRecipeAndUnnamedIngredients.yml index 47a749dc..bdbe4fbd 100644 --- a/api/Vintagestory.API.Client.GridRecipeAndUnnamedIngredients.yml +++ b/api/Vintagestory.API.Client.GridRecipeAndUnnamedIngredients.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowGridRecipeTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GridRecipeAndUnnamedIngredients path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowGridRecipeTextComponent.cs startLine: 15 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowGridRecipeTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Recipe path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowGridRecipeTextComponent.cs startLine: 17 @@ -79,8 +79,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowGridRecipeTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: unnamedIngredients path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowGridRecipeTextComponent.cs startLine: 18 diff --git a/api/Vintagestory.API.Client.GuiComposer.yml b/api/Vintagestory.API.Client.GuiComposer.yml index 84bce413..b02d7b96 100644 --- a/api/Vintagestory.API.Client.GuiComposer.yml +++ b/api/Vintagestory.API.Client.GuiComposer.yml @@ -72,8 +72,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiComposer path: Client/UI/GuiComposer.cs startLine: 23 @@ -218,8 +218,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnComposed path: Client/UI/GuiComposer.cs startLine: 28 @@ -247,8 +247,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnFocusChanged path: Client/UI/GuiComposer.cs startLine: 29 @@ -274,8 +274,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Outlines path: Client/UI/GuiComposer.cs startLine: 31 @@ -301,8 +301,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: interactiveElementsInDrawOrder path: Client/UI/GuiComposer.cs startLine: 38 @@ -328,8 +328,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: currentElementKey path: Client/UI/GuiComposer.cs startLine: 40 @@ -355,8 +355,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: currentFocusableElementKey path: Client/UI/GuiComposer.cs startLine: 41 @@ -382,8 +382,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: staticElementsTexture path: Client/UI/GuiComposer.cs startLine: 44 @@ -409,8 +409,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: bounds path: Client/UI/GuiComposer.cs startLine: 46 @@ -436,8 +436,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: parentBoundsForNextElement path: Client/UI/GuiComposer.cs startLine: 48 @@ -463,8 +463,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: conditionalAdds path: Client/UI/GuiComposer.cs startLine: 49 @@ -490,8 +490,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: lastAddedElementBounds path: Client/UI/GuiComposer.cs startLine: 51 @@ -517,8 +517,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: lastAddedElement path: Client/UI/GuiComposer.cs startLine: 52 @@ -544,8 +544,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurParentBounds path: Client/UI/GuiComposer.cs startLine: 54 @@ -573,8 +573,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Composed path: Client/UI/GuiComposer.cs startLine: 56 @@ -600,8 +600,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Api path: Client/UI/GuiComposer.cs startLine: 61 @@ -627,8 +627,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: zDepth path: Client/UI/GuiComposer.cs startLine: 62 @@ -654,8 +654,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Color path: Client/UI/GuiComposer.cs startLine: 66 @@ -681,8 +681,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentElementKey path: Client/UI/GuiComposer.cs startLine: 71 @@ -712,8 +712,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LastAddedElement path: Client/UI/GuiComposer.cs startLine: 76 @@ -741,8 +741,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Client/UI/GuiComposer.cs startLine: 83 @@ -779,8 +779,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Bounds path: Client/UI/GuiComposer.cs startLine: 98 @@ -808,8 +808,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Tabbable path: Client/UI/GuiComposer.cs startLine: 108 @@ -837,8 +837,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Enabled path: Client/UI/GuiComposer.cs startLine: 110 @@ -864,8 +864,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateEmpty path: Client/UI/GuiComposer.cs startLine: 128 @@ -899,8 +899,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PremultipliedAlpha path: Client/UI/GuiComposer.cs startLine: 139 @@ -940,8 +940,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddIf path: Client/UI/GuiComposer.cs startLine: 149 @@ -977,8 +977,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EndIf path: Client/UI/GuiComposer.cs startLine: 158 @@ -1007,8 +1007,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Execute path: Client/UI/GuiComposer.cs startLine: 169 @@ -1042,8 +1042,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeginChildElements path: Client/UI/GuiComposer.cs startLine: 181 @@ -1076,8 +1076,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeginChildElements path: Client/UI/GuiComposer.cs startLine: 197 @@ -1106,8 +1106,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EndChildElements path: Client/UI/GuiComposer.cs startLine: 208 @@ -1136,8 +1136,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnlyDynamic path: Client/UI/GuiComposer.cs startLine: 223 @@ -1166,8 +1166,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReCompose path: Client/UI/GuiComposer.cs startLine: 232 @@ -1194,8 +1194,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentTabIndexElement path: Client/UI/GuiComposer.cs startLine: 247 @@ -1225,8 +1225,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FirstTabbableElement path: Client/UI/GuiComposer.cs startLine: 262 @@ -1254,8 +1254,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxTabIndex path: Client/UI/GuiComposer.cs startLine: 281 @@ -1285,8 +1285,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FocusElement path: Client/UI/GuiComposer.cs startLine: 303 @@ -1323,8 +1323,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UnfocusOwnElements path: Client/UI/GuiComposer.cs startLine: 329 @@ -1351,8 +1351,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UnfocusOwnElementsExcept path: Client/UI/GuiComposer.cs startLine: 338 @@ -1383,8 +1383,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Compose path: Client/UI/GuiComposer.cs startLine: 356 @@ -1420,8 +1420,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseUp path: Client/UI/GuiComposer.cs startLine: 440 @@ -1452,8 +1452,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDown path: Client/UI/GuiComposer.cs startLine: 454 @@ -1484,8 +1484,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseMove path: Client/UI/GuiComposer.cs startLine: 499 @@ -1516,8 +1516,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseEnterSlot path: Client/UI/GuiComposer.cs startLine: 514 @@ -1547,8 +1547,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseLeaveSlot path: Client/UI/GuiComposer.cs startLine: 526 @@ -1578,8 +1578,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseWheel path: Client/UI/GuiComposer.cs startLine: 542 @@ -1610,8 +1610,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnKeyDown path: Client/UI/GuiComposer.cs startLine: 576 @@ -1648,8 +1648,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnKeyUp path: Client/UI/GuiComposer.cs startLine: 615 @@ -1680,8 +1680,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnKeyPress path: Client/UI/GuiComposer.cs startLine: 630 @@ -1712,8 +1712,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clear path: Client/UI/GuiComposer.cs startLine: 640 @@ -1741,8 +1741,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PostRender path: Client/UI/GuiComposer.cs startLine: 673 @@ -1776,8 +1776,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MouseOverCursor path: Client/UI/GuiComposer.cs startLine: 707 @@ -1803,8 +1803,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Render path: Client/UI/GuiComposer.cs startLine: 713 @@ -1838,8 +1838,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddInteractiveElement path: Client/UI/GuiComposer.cs startLine: 780 @@ -1878,8 +1878,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddStaticElement path: Client/UI/GuiComposer.cs startLine: 823 @@ -1918,8 +1918,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetElement path: Client/UI/GuiComposer.cs startLine: 848 @@ -1955,8 +1955,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/GuiComposer.cs startLine: 864 diff --git a/api/Vintagestory.API.Client.GuiComposerHelpers.yml b/api/Vintagestory.API.Client.GuiComposerHelpers.yml index 0fab1b68..1e666b4f 100644 --- a/api/Vintagestory.API.Client.GuiComposerHelpers.yml +++ b/api/Vintagestory.API.Client.GuiComposerHelpers.yml @@ -104,8 +104,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementStaticText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiComposerHelpers path: Client/UI/Elements/Impl/Static/GuiElementStaticText.cs startLine: 65 @@ -140,8 +140,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementColorListPicker.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetColorListPicker path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementColorListPicker.cs startLine: 33 @@ -182,8 +182,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementColorListPicker.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorListPickerSetValue path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementColorListPicker.cs startLine: 45 @@ -224,8 +224,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementColorListPicker.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddColorListPicker path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementColorListPicker.cs startLine: 67 @@ -278,8 +278,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementCompactScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddCompactVerticalScrollbar path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementCompactScrollbar.cs startLine: 93 @@ -325,8 +325,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementCompactScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCompactScrollbar path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementCompactScrollbar.cs startLine: 108 @@ -367,8 +367,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddMultiSelectDropDown path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 469 @@ -423,8 +423,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddDropDown path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 489 @@ -479,8 +479,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddDropDown path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 509 @@ -538,8 +538,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDropDown path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 524 @@ -579,8 +579,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementElementListPickerBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddElementListPicker path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementElementListPickerBase.cs startLine: 178 @@ -637,8 +637,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddHorizontalTabs path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs startLine: 317 @@ -693,8 +693,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHorizontalTabs path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs startLine: 332 @@ -734,8 +734,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementIconListPicker.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetIconListPicker path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementIconListPicker.cs startLine: 34 @@ -776,8 +776,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementIconListPicker.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IconListPickerSetValue path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementIconListPicker.cs startLine: 46 @@ -818,8 +818,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementIconListPicker.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddIconListPicker path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementIconListPicker.cs startLine: 68 @@ -872,8 +872,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddVerticalScrollbar path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs startLine: 296 @@ -919,8 +919,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetScrollbar path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs startLine: 312 @@ -961,8 +961,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddSlider path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs startLine: 401 @@ -1008,8 +1008,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSlider path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs startLine: 416 @@ -1050,8 +1050,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitch.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddSwitch path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitch.cs startLine: 132 @@ -1103,8 +1103,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitch.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSwitch path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitch.cs startLine: 147 @@ -1145,8 +1145,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddButton path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs startLine: 348 @@ -1206,8 +1206,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddButton path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs startLine: 351 @@ -1265,8 +1265,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddSmallButton path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs startLine: 354 @@ -1324,8 +1324,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddButton path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs startLine: 370 @@ -1381,8 +1381,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddButton path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs startLine: 393 @@ -1435,8 +1435,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddSmallButton path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs startLine: 415 @@ -1489,8 +1489,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetButton path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs startLine: 448 @@ -1531,8 +1531,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetToggleButton path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs startLine: 264 @@ -1573,8 +1573,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddToggleButton path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs startLine: 279 @@ -1626,8 +1626,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddIconButton path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs startLine: 296 @@ -1676,8 +1676,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToggleButtonsSetValue path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs startLine: 311 @@ -1718,8 +1718,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddIconToggleButtons path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs startLine: 331 @@ -1771,8 +1771,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddTextToggleButtons path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs startLine: 373 @@ -1824,8 +1824,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddVerticalToggleTabs path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs startLine: 339 @@ -1874,8 +1874,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddVerticalTabs path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs startLine: 361 @@ -1924,8 +1924,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetVerticalTab path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs startLine: 378 @@ -1965,8 +1965,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddCellList path: Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs startLine: 319 @@ -2017,8 +2017,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCellList path: Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs startLine: 335 @@ -2061,8 +2061,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementChatInput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddChatInput path: Client/UI/Elements/Impl/Interactive/GuiElementChatInput.cs startLine: 98 @@ -2108,8 +2108,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementChatInput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetChatInput path: Client/UI/Elements/Impl/Interactive/GuiElementChatInput.cs startLine: 114 @@ -2150,8 +2150,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddConfigList path: Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs startLine: 271 @@ -2203,8 +2203,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetConfigList path: Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs startLine: 288 @@ -2245,8 +2245,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddContainer path: Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs startLine: 285 @@ -2289,8 +2289,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetContainer path: Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs startLine: 301 @@ -2331,8 +2331,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementDialogTitleBar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddDialogTitleBar path: Client/UI/Elements/Impl/Interactive/GuiElementDialogTitleBar.cs startLine: 389 @@ -2381,8 +2381,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementDialogTitleBar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddDialogTitleBarWithBg path: Client/UI/Elements/Impl/Interactive/GuiElementDialogTitleBar.cs startLine: 408 @@ -2431,8 +2431,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementDialogTitleBar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetTitleBar path: Client/UI/Elements/Impl/Interactive/GuiElementDialogTitleBar.cs startLine: 421 @@ -2468,8 +2468,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementNumberInput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddNumberInput path: Client/UI/Elements/Impl/Interactive/GuiElementNumberInput.cs startLine: 228 @@ -2518,8 +2518,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementNumberInput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetNumberInput path: Client/UI/Elements/Impl/Interactive/GuiElementNumberInput.cs startLine: 249 @@ -2560,8 +2560,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddStatbar path: Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs startLine: 334 @@ -2610,8 +2610,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddStatbar path: Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs startLine: 343 @@ -2651,8 +2651,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddInvStatbar path: Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs startLine: 359 @@ -2698,8 +2698,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetStatbar path: Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs startLine: 374 @@ -2740,8 +2740,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementTextArea.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddTextArea path: Client/UI/Elements/Impl/Interactive/GuiElementTextArea.cs startLine: 105 @@ -2790,8 +2790,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementTextArea.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetTextArea path: Client/UI/Elements/Impl/Interactive/GuiElementTextArea.cs startLine: 126 @@ -2832,8 +2832,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementTextInput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddTextInput path: Client/UI/Elements/Impl/Interactive/GuiElementTextInput.cs startLine: 155 @@ -2882,8 +2882,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementTextInput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetTextInput path: Client/UI/Elements/Impl/Interactive/GuiElementTextInput.cs startLine: 176 @@ -2924,8 +2924,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGrid.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddItemSlotGrid path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGrid.cs startLine: 61 @@ -2977,8 +2977,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGrid.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddItemSlotGrid path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGrid.cs startLine: 81 @@ -3033,8 +3033,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGrid.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSlotGrid path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGrid.cs startLine: 97 @@ -3074,8 +3074,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridExcl.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddItemSlotGridExcl path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridExcl.cs startLine: 89 @@ -3130,8 +3130,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridExcl.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSlotGridExcl path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridExcl.cs startLine: 104 @@ -3171,8 +3171,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementPassiveItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddPassiveItemSlot path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementPassiveItemSlot.cs startLine: 90 @@ -3221,8 +3221,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementSkillItemGrid.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddSkillItemGrid path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementSkillItemGrid.cs startLine: 189 @@ -3277,8 +3277,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementSkillItemGrid.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSkillItemGrid path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementSkillItemGrid.cs startLine: 204 @@ -3319,8 +3319,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEmbossedText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddEmbossedText path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEmbossedText.cs startLine: 132 @@ -3369,8 +3369,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEmbossedText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetEmbossedText path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEmbossedText.cs startLine: 147 @@ -3411,8 +3411,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddHoverText path: Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs startLine: 309 @@ -3464,8 +3464,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddAutoSizeHoverText path: Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs startLine: 320 @@ -3509,8 +3509,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddTranspHoverText path: Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs startLine: 341 @@ -3562,8 +3562,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddHoverText path: Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs startLine: 362 @@ -3618,8 +3618,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHoverText path: Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs startLine: 377 @@ -3659,8 +3659,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddRichtext path: Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs startLine: 621 @@ -3710,8 +3710,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddRichtext path: Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs startLine: 642 @@ -3764,8 +3764,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddRichtext path: Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs startLine: 660 @@ -3812,8 +3812,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRichtext path: Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs startLine: 676 @@ -3854,8 +3854,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/GuiElementCustomRender.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddCustomRender path: Client/UI/Elements/Impl/Misc/GuiElementCustomRender.cs startLine: 46 @@ -3895,8 +3895,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/GuiElementCustomRender.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCustomRender path: Client/UI/Elements/Impl/Misc/GuiElementCustomRender.cs startLine: 56 @@ -3932,8 +3932,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementCustomDraw.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddStaticCustomDraw path: Client/UI/Elements/Impl/Static/GuiElementCustomDraw.cs startLine: 74 @@ -3973,8 +3973,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementCustomDraw.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddDynamicCustomDraw path: Client/UI/Elements/Impl/Static/GuiElementCustomDraw.cs startLine: 90 @@ -4020,8 +4020,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementCustomDraw.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCustomDraw path: Client/UI/Elements/Impl/Static/GuiElementCustomDraw.cs startLine: 99 @@ -4057,8 +4057,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementDialogBackground.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddShadedDialogBG path: Client/UI/Elements/Impl/Static/GuiElementDialogBackground.cs startLine: 88 @@ -4108,8 +4108,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementDialogBackground.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddDialogBG path: Client/UI/Elements/Impl/Static/GuiElementDialogBackground.cs startLine: 97 @@ -4149,8 +4149,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementStaticText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddStaticText path: Client/UI/Elements/Impl/Static/GuiElementStaticText.cs startLine: 75 @@ -4199,8 +4199,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementStaticText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddStaticText path: Client/UI/Elements/Impl/Static/GuiElementStaticText.cs startLine: 93 @@ -4252,8 +4252,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementStaticText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddStaticTextAutoBoxSize path: Client/UI/Elements/Impl/Static/GuiElementStaticText.cs startLine: 111 @@ -4305,8 +4305,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementStaticText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddStaticTextAutoFontSize path: Client/UI/Elements/Impl/Static/GuiElementStaticText.cs startLine: 131 @@ -4355,8 +4355,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementStaticText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetStaticText path: Client/UI/Elements/Impl/Static/GuiElementStaticText.cs startLine: 147 diff --git a/api/Vintagestory.API.Client.GuiDialog.DlgComposers.yml b/api/Vintagestory.API.Client.GuiDialog.DlgComposers.yml index 7399d6b4..33c65767 100644 --- a/api/Vintagestory.API.Client.GuiDialog.DlgComposers.yml +++ b/api/Vintagestory.API.Client.GuiDialog.DlgComposers.yml @@ -24,8 +24,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DlgComposers path: Client/UI/Dialog/GuiDialog.cs startLine: 14 @@ -68,8 +68,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: dialogComposers path: Client/UI/Dialog/GuiDialog.cs startLine: 16 @@ -95,8 +95,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: dialog path: Client/UI/Dialog/GuiDialog.cs startLine: 17 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Values path: Client/UI/Dialog/GuiDialog.cs startLine: 22 @@ -153,8 +153,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Dialog/GuiDialog.cs startLine: 28 @@ -188,8 +188,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClearComposers path: Client/UI/Dialog/GuiDialog.cs startLine: 36 @@ -216,8 +216,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Dialog/GuiDialog.cs startLine: 49 @@ -244,8 +244,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Client/UI/Dialog/GuiDialog.cs startLine: 62 @@ -282,8 +282,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ContainsKey path: Client/UI/Dialog/GuiDialog.cs startLine: 90 @@ -320,8 +320,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Remove path: Client/UI/Dialog/GuiDialog.cs startLine: 99 diff --git a/api/Vintagestory.API.Client.GuiDialog.yml b/api/Vintagestory.API.Client.GuiDialog.yml index 11f8110c..c654e95d 100644 --- a/api/Vintagestory.API.Client.GuiDialog.yml +++ b/api/Vintagestory.API.Client.GuiDialog.yml @@ -73,8 +73,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiDialog path: Client/UI/Dialog/GuiDialog.cs startLine: 9 @@ -115,8 +115,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Composers path: Client/UI/Dialog/GuiDialog.cs startLine: 110 @@ -144,8 +144,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SingleComposer path: Client/UI/Dialog/GuiDialog.cs startLine: 115 @@ -175,8 +175,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DebugName path: Client/UI/Dialog/GuiDialog.cs startLine: 124 @@ -206,8 +206,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ZSize path: Client/UI/Dialog/GuiDialog.cs startLine: 132 @@ -237,8 +237,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ignoreNextKeyPress path: Client/UI/Dialog/GuiDialog.cs startLine: 136 @@ -264,8 +264,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: opened path: Client/UI/Dialog/GuiDialog.cs startLine: 139 @@ -291,8 +291,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: focused path: Client/UI/Dialog/GuiDialog.cs startLine: 140 @@ -318,8 +318,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Focused path: Client/UI/Dialog/GuiDialog.cs startLine: 145 @@ -349,8 +349,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Focusable path: Client/UI/Dialog/GuiDialog.cs startLine: 150 @@ -380,8 +380,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DialogType path: Client/UI/Dialog/GuiDialog.cs startLine: 156 @@ -411,8 +411,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnOpened path: Client/UI/Dialog/GuiDialog.cs startLine: 161 @@ -440,8 +440,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnClosed path: Client/UI/Dialog/GuiDialog.cs startLine: 166 @@ -469,8 +469,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: capi path: Client/UI/Dialog/GuiDialog.cs startLine: 169 @@ -496,8 +496,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnFocusChanged path: Client/UI/Dialog/GuiDialog.cs startLine: 171 @@ -528,8 +528,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Dialog/GuiDialog.cs startLine: 189 @@ -563,8 +563,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBlockTexturesLoaded path: Client/UI/Dialog/GuiDialog.cs startLine: 198 @@ -591,8 +591,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnLevelFinalize path: Client/UI/Dialog/GuiDialog.cs startLine: 210 @@ -619,8 +619,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnOwnPlayerDataReceived path: Client/UI/Dialog/GuiDialog.cs startLine: 215 @@ -645,8 +645,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawOrder path: Client/UI/Dialog/GuiDialog.cs startLine: 231 @@ -699,8 +699,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InputOrder path: Client/UI/Dialog/GuiDialog.cs startLine: 241 @@ -741,8 +741,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UnregisterOnClose path: Client/UI/Dialog/GuiDialog.cs startLine: 246 @@ -772,8 +772,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnGuiOpened path: Client/UI/Dialog/GuiDialog.cs startLine: 251 @@ -800,8 +800,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnGuiClosed path: Client/UI/Dialog/GuiDialog.cs startLine: 258 @@ -828,8 +828,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryOpen path: Client/UI/Dialog/GuiDialog.cs startLine: 266 @@ -859,8 +859,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryOpen path: Client/UI/Dialog/GuiDialog.cs startLine: 271 @@ -893,8 +893,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryClose path: Client/UI/Dialog/GuiDialog.cs startLine: 300 @@ -924,8 +924,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UnFocus path: Client/UI/Dialog/GuiDialog.cs startLine: 315 @@ -952,8 +952,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Focus path: Client/UI/Dialog/GuiDialog.cs startLine: 322 @@ -980,8 +980,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Toggle path: Client/UI/Dialog/GuiDialog.cs startLine: 331 @@ -1008,8 +1008,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsOpened path: Client/UI/Dialog/GuiDialog.cs startLine: 346 @@ -1039,8 +1039,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsOpened path: Client/UI/Dialog/GuiDialog.cs startLine: 356 @@ -1077,8 +1077,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBeforeRenderFrame3D path: Client/UI/Dialog/GuiDialog.cs startLine: 365 @@ -1112,8 +1112,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MouseOverCursor path: Client/UI/Dialog/GuiDialog.cs startLine: 370 @@ -1139,8 +1139,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnRenderGUI path: Client/UI/Dialog/GuiDialog.cs startLine: 376 @@ -1174,8 +1174,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnFinalizeFrame path: Client/UI/Dialog/GuiDialog.cs startLine: 390 @@ -1209,8 +1209,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnKeyDown path: Client/UI/Dialog/GuiDialog.cs startLine: 419 @@ -1241,8 +1241,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnKeyPress path: Client/UI/Dialog/GuiDialog.cs startLine: 446 @@ -1273,8 +1273,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnKeyUp path: Client/UI/Dialog/GuiDialog.cs startLine: 469 @@ -1305,8 +1305,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnEscapePressed path: Client/UI/Dialog/GuiDialog.cs startLine: 484 @@ -1336,8 +1336,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseEnterSlot path: Client/UI/Dialog/GuiDialog.cs startLine: 495 @@ -1371,8 +1371,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseLeaveSlot path: Client/UI/Dialog/GuiDialog.cs startLine: 513 @@ -1406,8 +1406,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseClickSlot path: Client/UI/Dialog/GuiDialog.cs startLine: 531 @@ -1441,8 +1441,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDown path: Client/UI/Dialog/GuiDialog.cs startLine: 537 @@ -1473,8 +1473,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseUp path: Client/UI/Dialog/GuiDialog.cs startLine: 565 @@ -1505,8 +1505,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseMove path: Client/UI/Dialog/GuiDialog.cs startLine: 589 @@ -1537,8 +1537,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseWheel path: Client/UI/Dialog/GuiDialog.cs startLine: 613 @@ -1569,8 +1569,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldReceiveRenderEvents path: Client/UI/Dialog/GuiDialog.cs startLine: 637 @@ -1600,8 +1600,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldReceiveKeyboardEvents path: Client/UI/Dialog/GuiDialog.cs startLine: 646 @@ -1631,8 +1631,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldReceiveMouseEvents path: Client/UI/Dialog/GuiDialog.cs startLine: 655 @@ -1662,8 +1662,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PrefersUngrabbedMouse path: Client/UI/Dialog/GuiDialog.cs startLine: 665 @@ -1696,8 +1696,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RequiresUngrabbedMouse path: Client/UI/Dialog/GuiDialog.cs startLine: 669 @@ -1736,8 +1736,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DisableMouseGrab path: Client/UI/Dialog/GuiDialog.cs startLine: 679 @@ -1770,8 +1770,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CaptureAllInputs path: Client/UI/Dialog/GuiDialog.cs startLine: 686 @@ -1801,8 +1801,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CaptureRawMouse path: Client/UI/Dialog/GuiDialog.cs startLine: 695 @@ -1832,8 +1832,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Dialog/GuiDialog.cs startLine: 703 @@ -1862,8 +1862,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClearComposers path: Client/UI/Dialog/GuiDialog.cs startLine: 710 @@ -1890,8 +1890,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToggleKeyCombinationCode path: Client/UI/Dialog/GuiDialog.cs startLine: 718 @@ -1921,8 +1921,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsInRangeOf path: Client/UI/Dialog/GuiDialog.cs startLine: 725 diff --git a/api/Vintagestory.API.Client.GuiDialogBlockEntity.EnumPosFlag.yml b/api/Vintagestory.API.Client.GuiDialogBlockEntity.EnumPosFlag.yml index d4df5c2a..d715a794 100644 --- a/api/Vintagestory.API.Client.GuiDialogBlockEntity.EnumPosFlag.yml +++ b/api/Vintagestory.API.Client.GuiDialogBlockEntity.EnumPosFlag.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumPosFlag path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 247 @@ -56,8 +56,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RightMid path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 250 @@ -82,8 +82,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RightTop path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 251 @@ -108,8 +108,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RightBot path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 252 @@ -134,8 +134,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LeftMid path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 253 @@ -160,8 +160,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LeftTop path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 254 @@ -186,8 +186,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LeftBot path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 255 diff --git a/api/Vintagestory.API.Client.GuiDialogBlockEntity.yml b/api/Vintagestory.API.Client.GuiDialogBlockEntity.yml index 6d2bd1db..7e69c5b2 100644 --- a/api/Vintagestory.API.Client.GuiDialogBlockEntity.yml +++ b/api/Vintagestory.API.Client.GuiDialogBlockEntity.yml @@ -39,8 +39,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiDialogBlockEntity path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 11 @@ -139,8 +139,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsDuplicate path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 13 @@ -168,8 +168,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Inventory path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 15 @@ -197,8 +197,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockEntityPosition path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 17 @@ -226,8 +226,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OpenSound path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 22 @@ -257,8 +257,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CloseSound path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 27 @@ -288,8 +288,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FloatyDialogPosition path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 34 @@ -322,8 +322,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FloatyDialogAlign path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 41 @@ -358,8 +358,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 48 @@ -401,8 +401,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 62 @@ -441,8 +441,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnFinalizeFrame path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 76 @@ -477,8 +477,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnRenderGUI path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 91 @@ -513,8 +513,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DoSendPacket path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 119 @@ -548,8 +548,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnNewScrollbarvalue path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 128 @@ -583,8 +583,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CloseIconPressed path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 139 @@ -611,8 +611,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnGuiOpened path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 147 @@ -640,8 +640,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryOpen path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 161 @@ -672,8 +672,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnGuiClosed path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 170 @@ -701,8 +701,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PrefersUngrabbedMouse path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 183 @@ -736,8 +736,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReloadValues path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 188 @@ -764,8 +764,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetFreePos path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 194 @@ -798,8 +798,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OccupyPos path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 211 @@ -832,8 +832,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FreePos path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 218 @@ -866,8 +866,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsRight path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 234 @@ -897,8 +897,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: YOffsetMul path: Client/UI/Dialog/GuiDialogBlockEntity.cs startLine: 239 diff --git a/api/Vintagestory.API.Client.GuiDialogBlockEntityInventory.yml b/api/Vintagestory.API.Client.GuiDialogBlockEntityInventory.yml index b13c4404..99436cc0 100644 --- a/api/Vintagestory.API.Client.GuiDialogBlockEntityInventory.yml +++ b/api/Vintagestory.API.Client.GuiDialogBlockEntityInventory.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntityInventory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiDialogBlockEntityInventory path: Client/UI/Dialog/GuiDialogBlockEntityInventory.cs startLine: 9 @@ -137,8 +137,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntityInventory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawOrder path: Client/UI/Dialog/GuiDialogBlockEntityInventory.cs startLine: 14 @@ -192,8 +192,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntityInventory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Dialog/GuiDialogBlockEntityInventory.cs startLine: 16 @@ -232,8 +232,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntityInventory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnGuiClosed path: Client/UI/Dialog/GuiDialogBlockEntityInventory.cs startLine: 104 @@ -261,8 +261,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogBlockEntityInventory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnGuiOpened path: Client/UI/Dialog/GuiDialogBlockEntityInventory.cs startLine: 110 diff --git a/api/Vintagestory.API.Client.GuiDialogCharacterBase.yml b/api/Vintagestory.API.Client.GuiDialogCharacterBase.yml index 8ccb82d3..e4cb17e5 100644 --- a/api/Vintagestory.API.Client.GuiDialogCharacterBase.yml +++ b/api/Vintagestory.API.Client.GuiDialogCharacterBase.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogCharacterBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiDialogCharacterBase path: Client/UI/Dialog/GuiDialogCharacterBase.cs startLine: 5 @@ -116,8 +116,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogCharacterBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Tabs path: Client/UI/Dialog/GuiDialogCharacterBase.cs startLine: 8 @@ -145,8 +145,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogCharacterBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderTabHandlers path: Client/UI/Dialog/GuiDialogCharacterBase.cs startLine: 9 @@ -174,8 +174,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogCharacterBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Dialog/GuiDialogCharacterBase.cs startLine: 12 @@ -206,8 +206,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogCharacterBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnTitleBarClose path: Client/UI/Dialog/GuiDialogCharacterBase.cs startLine: 15 @@ -232,8 +232,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogCharacterBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeExtraGuis path: Client/UI/Dialog/GuiDialogCharacterBase.cs startLine: 21 @@ -259,8 +259,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogCharacterBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TabClicked path: Client/UI/Dialog/GuiDialogCharacterBase.cs startLine: 23 diff --git a/api/Vintagestory.API.Client.GuiDialogConfirm.yml b/api/Vintagestory.API.Client.GuiDialogConfirm.yml index 4f4dbf33..37f585b8 100644 --- a/api/Vintagestory.API.Client.GuiDialogConfirm.yml +++ b/api/Vintagestory.API.Client.GuiDialogConfirm.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogConfirm.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiDialogConfirm path: Client/UI/Dialog/GuiDialogConfirm.cs startLine: 5 @@ -111,8 +111,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogConfirm.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawOrder path: Client/UI/Dialog/GuiDialogConfirm.cs startLine: 10 @@ -166,8 +166,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogConfirm.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToggleKeyCombinationCode path: Client/UI/Dialog/GuiDialogConfirm.cs startLine: 12 @@ -198,8 +198,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogConfirm.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Dialog/GuiDialogConfirm.cs startLine: 18 @@ -234,8 +234,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogConfirm.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnGuiOpened path: Client/UI/Dialog/GuiDialogConfirm.cs startLine: 55 diff --git a/api/Vintagestory.API.Client.GuiDialogGeneric.yml b/api/Vintagestory.API.Client.GuiDialogGeneric.yml index 57a8d248..158effc9 100644 --- a/api/Vintagestory.API.Client.GuiDialogGeneric.yml +++ b/api/Vintagestory.API.Client.GuiDialogGeneric.yml @@ -24,8 +24,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiDialogGeneric path: Client/UI/Dialog/GuiDialogGeneric.cs startLine: 10 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DialogTitle path: Client/UI/Dialog/GuiDialogGeneric.cs startLine: 15 @@ -151,8 +151,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UnregisterOnClose path: Client/UI/Dialog/GuiDialogGeneric.cs startLine: 20 @@ -183,8 +183,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Attributes path: Client/UI/Dialog/GuiDialogGeneric.cs startLine: 25 @@ -214,8 +214,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Dialog/GuiDialogGeneric.cs startLine: 32 @@ -252,8 +252,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToggleKeyCombinationCode path: Client/UI/Dialog/GuiDialogGeneric.cs startLine: 37 @@ -284,8 +284,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Recompose path: Client/UI/Dialog/GuiDialogGeneric.cs startLine: 45 @@ -312,8 +312,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UnfocusElements path: Client/UI/Dialog/GuiDialogGeneric.cs startLine: 56 @@ -340,8 +340,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FocusElement path: Client/UI/Dialog/GuiDialogGeneric.cs startLine: 68 @@ -375,8 +375,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiDialogGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsInRangeOfBlock path: Client/UI/Dialog/GuiDialogGeneric.cs startLine: 78 diff --git a/api/Vintagestory.API.Client.GuiElement.yml b/api/Vintagestory.API.Client.GuiElement.yml index 26711879..aa22dad6 100644 --- a/api/Vintagestory.API.Client.GuiElement.yml +++ b/api/Vintagestory.API.Client.GuiElement.yml @@ -84,8 +84,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElement path: Client/UI/Elements/Impl/GuiElement.cs startLine: 10 @@ -136,8 +136,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: dirtTextureName path: Client/UI/Elements/Impl/GuiElement.cs startLine: 12 @@ -163,8 +163,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: noisyMetalTextureName path: Client/UI/Elements/Impl/GuiElement.cs startLine: 13 @@ -190,8 +190,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: woodTextureName path: Client/UI/Elements/Impl/GuiElement.cs startLine: 14 @@ -217,8 +217,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: stoneTextureName path: Client/UI/Elements/Impl/GuiElement.cs startLine: 15 @@ -244,8 +244,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: waterTextureName path: Client/UI/Elements/Impl/GuiElement.cs startLine: 16 @@ -271,8 +271,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: paperTextureName path: Client/UI/Elements/Impl/GuiElement.cs startLine: 17 @@ -298,8 +298,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Bounds path: Client/UI/Elements/Impl/GuiElement.cs startLine: 27 @@ -327,8 +327,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TabIndex path: Client/UI/Elements/Impl/GuiElement.cs startLine: 32 @@ -356,8 +356,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: hasFocus path: Client/UI/Elements/Impl/GuiElement.cs startLine: 37 @@ -385,8 +385,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InsideClipBounds path: Client/UI/Elements/Impl/GuiElement.cs startLine: 42 @@ -416,8 +416,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: api path: Client/UI/Elements/Impl/GuiElement.cs startLine: 47 @@ -445,8 +445,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderAsPremultipliedAlpha path: Client/UI/Elements/Impl/GuiElement.cs startLine: 49 @@ -474,8 +474,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HasFocus path: Client/UI/Elements/Impl/GuiElement.cs startLine: 54 @@ -505,8 +505,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawOrder path: Client/UI/Elements/Impl/GuiElement.cs startLine: 61 @@ -536,8 +536,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Focusable path: Client/UI/Elements/Impl/GuiElement.cs startLine: 69 @@ -567,8 +567,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Scale path: Client/UI/Elements/Impl/GuiElement.cs startLine: 77 @@ -598,8 +598,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnFocusGained path: Client/UI/Elements/Impl/GuiElement.cs startLine: 85 @@ -626,8 +626,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnFocusLost path: Client/UI/Elements/Impl/GuiElement.cs startLine: 93 @@ -654,8 +654,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/GuiElement.cs startLine: 103 @@ -692,8 +692,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/GuiElement.cs startLine: 114 @@ -727,8 +727,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/GuiElement.cs startLine: 123 @@ -762,8 +762,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PostRenderInteractiveElements path: Client/UI/Elements/Impl/GuiElement.cs startLine: 132 @@ -797,8 +797,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderFocusOverlay path: Client/UI/Elements/Impl/GuiElement.cs startLine: 141 @@ -832,8 +832,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: generateTexture path: Client/UI/Elements/Impl/GuiElement.cs startLine: 160 @@ -873,8 +873,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: generateTexture path: Client/UI/Elements/Impl/GuiElement.cs startLine: 175 @@ -914,8 +914,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: scaled path: Client/UI/Elements/Impl/GuiElement.cs startLine: 185 @@ -952,8 +952,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: scaledi path: Client/UI/Elements/Impl/GuiElement.cs startLine: 195 @@ -990,8 +990,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: genContext path: Client/UI/Elements/Impl/GuiElement.cs startLine: 205 @@ -1025,8 +1025,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: getPattern path: Client/UI/Elements/Impl/GuiElement.cs startLine: 219 @@ -1072,8 +1072,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: getPattern path: Client/UI/Elements/Impl/GuiElement.cs startLine: 234 @@ -1119,8 +1119,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: getImageSurfaceFromAsset path: Client/UI/Elements/Impl/GuiElement.cs startLine: 249 @@ -1166,8 +1166,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: getImageSurfaceFromAsset path: Client/UI/Elements/Impl/GuiElement.cs startLine: 269 @@ -1201,8 +1201,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: getImageSurfaceFromAsset path: Client/UI/Elements/Impl/GuiElement.cs startLine: 297 @@ -1257,8 +1257,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: getImageSurfaceFromAsset path: Client/UI/Elements/Impl/GuiElement.cs startLine: 312 @@ -1301,8 +1301,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeforeCalcBounds path: Client/UI/Elements/Impl/GuiElement.cs startLine: 320 @@ -1327,8 +1327,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: getPattern path: Client/UI/Elements/Impl/GuiElement.cs startLine: 334 @@ -1377,8 +1377,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: getImageSurfaceFromAsset path: Client/UI/Elements/Impl/GuiElement.cs startLine: 365 @@ -1421,8 +1421,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: fillWithPattern path: Client/UI/Elements/Impl/GuiElement.cs startLine: 404 @@ -1477,8 +1477,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DiscardPattern path: Client/UI/Elements/Impl/GuiElement.cs startLine: 426 @@ -1509,8 +1509,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Lamp path: Client/UI/Elements/Impl/GuiElement.cs startLine: 447 @@ -1547,8 +1547,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rectangle path: Client/UI/Elements/Impl/GuiElement.cs startLine: 460 @@ -1582,8 +1582,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rectangle path: Client/UI/Elements/Impl/GuiElement.cs startLine: 478 @@ -1629,8 +1629,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DialogRoundRectangle path: Client/UI/Elements/Impl/GuiElement.cs startLine: 493 @@ -1664,8 +1664,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ElementRoundRectangle path: Client/UI/Elements/Impl/GuiElement.cs startLine: 505 @@ -1708,8 +1708,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RoundRectangle path: Client/UI/Elements/Impl/GuiElement.cs startLine: 527 @@ -1758,8 +1758,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShadePath path: Client/UI/Elements/Impl/GuiElement.cs startLine: 545 @@ -1796,8 +1796,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EmbossRoundRectangleDialog path: Client/UI/Elements/Impl/GuiElement.cs startLine: 565 @@ -1846,8 +1846,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EmbossRoundRectangleElement path: Client/UI/Elements/Impl/GuiElement.cs startLine: 581 @@ -1902,8 +1902,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EmbossRoundRectangleElement path: Client/UI/Elements/Impl/GuiElement.cs startLine: 594 @@ -1949,8 +1949,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EmbossRoundRectangle path: Client/UI/Elements/Impl/GuiElement.cs startLine: 613 @@ -2014,8 +2014,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderBoundsDebug path: Client/UI/Elements/Impl/GuiElement.cs startLine: 671 @@ -2040,8 +2040,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDown path: Client/UI/Elements/Impl/GuiElement.cs startLine: 684 @@ -2075,8 +2075,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDownOnElement path: Client/UI/Elements/Impl/GuiElement.cs startLine: 697 @@ -2110,8 +2110,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseUpOnElement path: Client/UI/Elements/Impl/GuiElement.cs startLine: 707 @@ -2145,8 +2145,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseUp path: Client/UI/Elements/Impl/GuiElement.cs startLine: 714 @@ -2180,8 +2180,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseEnterSlot path: Client/UI/Elements/Impl/GuiElement.cs startLine: 722 @@ -2213,8 +2213,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseLeaveSlot path: Client/UI/Elements/Impl/GuiElement.cs startLine: 727 @@ -2246,8 +2246,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseMove path: Client/UI/Elements/Impl/GuiElement.cs startLine: 738 @@ -2281,8 +2281,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseWheel path: Client/UI/Elements/Impl/GuiElement.cs startLine: 745 @@ -2316,8 +2316,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnKeyDown path: Client/UI/Elements/Impl/GuiElement.cs startLine: 752 @@ -2351,8 +2351,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnKeyUp path: Client/UI/Elements/Impl/GuiElement.cs startLine: 759 @@ -2386,8 +2386,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnKeyPress path: Client/UI/Elements/Impl/GuiElement.cs startLine: 766 @@ -2421,8 +2421,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsPositionInside path: Client/UI/Elements/Impl/GuiElement.cs startLine: 774 @@ -2462,8 +2462,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MouseOverCursor path: Client/UI/Elements/Impl/GuiElement.cs startLine: 779 @@ -2491,8 +2491,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OutlineColor path: Client/UI/Elements/Impl/GuiElement.cs startLine: 785 @@ -2522,8 +2522,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Render2DTexture path: Client/UI/Elements/Impl/GuiElement.cs startLine: 793 @@ -2566,8 +2566,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Render2DTexture path: Client/UI/Elements/Impl/GuiElement.cs startLine: 805 @@ -2610,8 +2610,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Render2DTexture path: Client/UI/Elements/Impl/GuiElement.cs startLine: 818 @@ -2648,8 +2648,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/GuiElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/GuiElement.cs startLine: 834 diff --git a/api/Vintagestory.API.Client.GuiElementCellList-1.yml b/api/Vintagestory.API.Client.GuiElementCellList-1.yml index ac120194..6e9ac409 100644 --- a/api/Vintagestory.API.Client.GuiElementCellList-1.yml +++ b/api/Vintagestory.API.Client.GuiElementCellList-1.yml @@ -32,8 +32,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementCellList path: Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs startLine: 40 @@ -135,8 +135,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: elementCells path: Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs startLine: 45 @@ -166,8 +166,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: unscaledCellSpacing path: Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs startLine: 52 @@ -197,8 +197,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UnscaledCellVerPadding path: Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs startLine: 57 @@ -228,8 +228,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UnscaledCellHorPadding path: Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs startLine: 62 @@ -259,8 +259,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InsideClipBounds path: Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs startLine: 70 @@ -293,8 +293,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs startLine: 92 @@ -337,8 +337,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReloadCells path: Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs startLine: 116 @@ -369,8 +369,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeforeCalcBounds path: Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs startLine: 137 @@ -399,8 +399,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CalcTotalHeight path: Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs startLine: 146 @@ -429,8 +429,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs startLine: 166 @@ -466,8 +466,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddCell path: Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs startLine: 192 @@ -504,8 +504,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveCell path: Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs startLine: 220 @@ -539,8 +539,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseUpOnElement path: Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs startLine: 226 @@ -577,8 +577,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDownOnElement path: Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs startLine: 244 @@ -615,8 +615,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseMove path: Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs startLine: 262 @@ -653,8 +653,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs startLine: 280 @@ -689,8 +689,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs startLine: 297 diff --git a/api/Vintagestory.API.Client.GuiElementChatInput.yml b/api/Vintagestory.API.Client.GuiElementChatInput.yml index a8a9ac6e..9ec167a3 100644 --- a/api/Vintagestory.API.Client.GuiElementChatInput.yml +++ b/api/Vintagestory.API.Client.GuiElementChatInput.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementChatInput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementChatInput path: Client/UI/Elements/Impl/Interactive/GuiElementChatInput.cs startLine: 5 @@ -161,8 +161,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementChatInput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/GuiElementChatInput.cs startLine: 16 @@ -202,8 +202,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementChatInput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeTextElements path: Client/UI/Elements/Impl/Interactive/GuiElementChatInput.cs startLine: 24 @@ -235,8 +235,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementChatInput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/GuiElementChatInput.cs startLine: 64 @@ -271,8 +271,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementChatInput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Interactive/GuiElementChatInput.cs startLine: 79 diff --git a/api/Vintagestory.API.Client.GuiElementClipHelpler.yml b/api/Vintagestory.API.Client.GuiElementClipHelpler.yml index 06b1f0e1..d92554ae 100644 --- a/api/Vintagestory.API.Client.GuiElementClipHelpler.yml +++ b/api/Vintagestory.API.Client.GuiElementClipHelpler.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/GuiElementClip.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementClipHelpler path: Client/UI/Elements/Impl/Misc/GuiElementClip.cs startLine: 50 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/GuiElementClip.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeginClip path: Client/UI/Elements/Impl/Misc/GuiElementClip.cs startLine: 57 @@ -91,8 +91,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/GuiElementClip.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EndClip path: Client/UI/Elements/Impl/Misc/GuiElementClip.cs startLine: 71 diff --git a/api/Vintagestory.API.Client.GuiElementColorListPicker.yml b/api/Vintagestory.API.Client.GuiElementColorListPicker.yml index 835a3fe5..6a309633 100644 --- a/api/Vintagestory.API.Client.GuiElementColorListPicker.yml +++ b/api/Vintagestory.API.Client.GuiElementColorListPicker.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementColorListPicker.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementColorListPicker path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementColorListPicker.cs startLine: 9 @@ -134,8 +134,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementColorListPicker.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementColorListPicker.cs startLine: 11 @@ -170,8 +170,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementColorListPicker.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawElement path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementColorListPicker.cs startLine: 15 diff --git a/api/Vintagestory.API.Client.GuiElementCompactScrollbar.yml b/api/Vintagestory.API.Client.GuiElementCompactScrollbar.yml index 325dd30b..d1cdc3ee 100644 --- a/api/Vintagestory.API.Client.GuiElementCompactScrollbar.yml +++ b/api/Vintagestory.API.Client.GuiElementCompactScrollbar.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementCompactScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementCompactScrollbar path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementCompactScrollbar.cs startLine: 5 @@ -147,8 +147,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementCompactScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: scrollbarPadding path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementCompactScrollbar.cs startLine: 10 @@ -176,8 +176,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementCompactScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Focusable path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementCompactScrollbar.cs startLine: 15 @@ -208,8 +208,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementCompactScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementCompactScrollbar.cs startLine: 23 @@ -249,8 +249,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementCompactScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementCompactScrollbar.cs startLine: 32 @@ -285,8 +285,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementCompactScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RecomposeHandle path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementCompactScrollbar.cs startLine: 45 @@ -313,8 +313,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementCompactScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementCompactScrollbar.cs startLine: 68 diff --git a/api/Vintagestory.API.Client.GuiElementConfigList.yml b/api/Vintagestory.API.Client.GuiElementConfigList.yml index 176f1f2b..117c2062 100644 --- a/api/Vintagestory.API.Client.GuiElementConfigList.yml +++ b/api/Vintagestory.API.Client.GuiElementConfigList.yml @@ -30,8 +30,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementConfigList path: Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs startLine: 62 @@ -148,8 +148,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: unscaledPadding path: Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs startLine: 64 @@ -175,8 +175,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: leftWidthRel path: Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs startLine: 66 @@ -202,8 +202,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: rightWidthRel path: Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs startLine: 67 @@ -229,8 +229,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: items path: Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs startLine: 69 @@ -256,8 +256,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: innerBounds path: Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs startLine: 76 @@ -283,8 +283,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: errorFont path: Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs startLine: 78 @@ -310,8 +310,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: stdFont path: Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs startLine: 79 @@ -337,8 +337,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: titleFont path: Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs startLine: 80 @@ -364,8 +364,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs startLine: 90 @@ -411,8 +411,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Autoheight path: Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs startLine: 105 @@ -439,8 +439,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeTextElements path: Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs startLine: 131 @@ -472,8 +472,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Refresh path: Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs startLine: 147 @@ -500,8 +500,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs startLine: 196 @@ -536,8 +536,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDownOnElement path: Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs startLine: 219 @@ -572,8 +572,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Interactive/GuiElementConfigList.cs startLine: 251 diff --git a/api/Vintagestory.API.Client.GuiElementContainer.yml b/api/Vintagestory.API.Client.GuiElementContainer.yml index c6f98e04..f369dd7d 100644 --- a/api/Vintagestory.API.Client.GuiElementContainer.yml +++ b/api/Vintagestory.API.Client.GuiElementContainer.yml @@ -33,8 +33,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementContainer path: Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs startLine: 8 @@ -129,8 +129,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Elements path: Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs startLine: 13 @@ -158,8 +158,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: unscaledCellSpacing path: Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs startLine: 18 @@ -187,8 +187,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UnscaledCellVerPadding path: Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs startLine: 23 @@ -216,8 +216,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UnscaledCellHorPadding path: Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs startLine: 28 @@ -245,8 +245,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs startLine: 47 @@ -283,8 +283,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeforeCalcBounds path: Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs startLine: 53 @@ -311,8 +311,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CalcTotalHeight path: Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs startLine: 71 @@ -339,8 +339,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs startLine: 83 @@ -374,8 +374,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs startLine: 118 @@ -412,8 +412,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveCell path: Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs startLine: 138 @@ -447,8 +447,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseUp path: Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs startLine: 143 @@ -483,8 +483,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDown path: Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs startLine: 174 @@ -518,8 +518,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseMove path: Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs startLine: 205 @@ -554,8 +554,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnKeyDown path: Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs startLine: 217 @@ -590,8 +590,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnKeyPress path: Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs startLine: 227 @@ -626,8 +626,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseWheel path: Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs startLine: 237 @@ -662,8 +662,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs startLine: 254 @@ -698,8 +698,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Interactive/GuiElementContainer.cs startLine: 264 diff --git a/api/Vintagestory.API.Client.GuiElementControl.yml b/api/Vintagestory.API.Client.GuiElementControl.yml index acde9f50..9e06761c 100644 --- a/api/Vintagestory.API.Client.GuiElementControl.yml +++ b/api/Vintagestory.API.Client.GuiElementControl.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementControl.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementControl path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementControl.cs startLine: 5 @@ -133,8 +133,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementControl.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: enabled path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementControl.cs startLine: 7 @@ -160,8 +160,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementControl.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementControl.cs startLine: 14 @@ -198,8 +198,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementControl.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Enabled path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementControl.cs startLine: 21 diff --git a/api/Vintagestory.API.Client.GuiElementCustomDraw.yml b/api/Vintagestory.API.Client.GuiElementCustomDraw.yml index 41bd697d..4034ce2d 100644 --- a/api/Vintagestory.API.Client.GuiElementCustomDraw.yml +++ b/api/Vintagestory.API.Client.GuiElementCustomDraw.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementCustomDraw.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementCustomDraw path: Client/UI/Elements/Impl/Static/GuiElementCustomDraw.cs startLine: 6 @@ -123,8 +123,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementCustomDraw.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Static/GuiElementCustomDraw.cs startLine: 20 @@ -167,8 +167,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementCustomDraw.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Static/GuiElementCustomDraw.cs startLine: 26 @@ -202,8 +202,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementCustomDraw.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Redraw path: Client/UI/Elements/Impl/Static/GuiElementCustomDraw.cs startLine: 42 @@ -230,8 +230,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementCustomDraw.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDownOnElement path: Client/UI/Elements/Impl/Static/GuiElementCustomDraw.cs startLine: 54 @@ -266,8 +266,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementCustomDraw.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Static/GuiElementCustomDraw.cs startLine: 60 diff --git a/api/Vintagestory.API.Client.GuiElementCustomRender.yml b/api/Vintagestory.API.Client.GuiElementCustomRender.yml index b8147bc4..7bf95e58 100644 --- a/api/Vintagestory.API.Client.GuiElementCustomRender.yml +++ b/api/Vintagestory.API.Client.GuiElementCustomRender.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/GuiElementCustomRender.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementCustomRender path: Client/UI/Elements/Impl/Misc/GuiElementCustomRender.cs startLine: 6 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/GuiElementCustomRender.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Misc/GuiElementCustomRender.cs startLine: 16 @@ -163,8 +163,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/GuiElementCustomRender.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Misc/GuiElementCustomRender.cs startLine: 21 @@ -198,8 +198,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/GuiElementCustomRender.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDownOnElement path: Client/UI/Elements/Impl/Misc/GuiElementCustomRender.cs startLine: 26 @@ -234,8 +234,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/GuiElementCustomRender.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Misc/GuiElementCustomRender.cs startLine: 32 diff --git a/api/Vintagestory.API.Client.GuiElementDialogBackground.yml b/api/Vintagestory.API.Client.GuiElementDialogBackground.yml index 211caf5b..a5193304 100644 --- a/api/Vintagestory.API.Client.GuiElementDialogBackground.yml +++ b/api/Vintagestory.API.Client.GuiElementDialogBackground.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementDialogBackground.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementDialogBackground path: Client/UI/Elements/Impl/Static/GuiElementDialogBackground.cs startLine: 4 @@ -125,8 +125,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementDialogBackground.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Shade path: Client/UI/Elements/Impl/Static/GuiElementDialogBackground.cs startLine: 6 @@ -152,8 +152,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementDialogBackground.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Alpha path: Client/UI/Elements/Impl/Static/GuiElementDialogBackground.cs startLine: 10 @@ -179,8 +179,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementDialogBackground.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FullBlur path: Client/UI/Elements/Impl/Static/GuiElementDialogBackground.cs startLine: 12 @@ -206,8 +206,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementDialogBackground.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Static/GuiElementDialogBackground.cs startLine: 22 @@ -253,8 +253,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementDialogBackground.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Static/GuiElementDialogBackground.cs startLine: 30 diff --git a/api/Vintagestory.API.Client.GuiElementDialogTitleBar.yml b/api/Vintagestory.API.Client.GuiElementDialogTitleBar.yml index bc7ee689..d2a5a0fd 100644 --- a/api/Vintagestory.API.Client.GuiElementDialogTitleBar.yml +++ b/api/Vintagestory.API.Client.GuiElementDialogTitleBar.yml @@ -28,8 +28,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementDialogTitleBar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementDialogTitleBar path: Client/UI/Elements/Impl/Interactive/GuiElementDialogTitleBar.cs startLine: 12 @@ -141,8 +141,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementDialogTitleBar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: unscaledCloseIconSize path: Client/UI/Elements/Impl/Interactive/GuiElementDialogTitleBar.cs startLine: 22 @@ -170,8 +170,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementDialogTitleBar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: drawBg path: Client/UI/Elements/Impl/Interactive/GuiElementDialogTitleBar.cs startLine: 31 @@ -197,8 +197,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementDialogTitleBar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Movable path: Client/UI/Elements/Impl/Interactive/GuiElementDialogTitleBar.cs startLine: 41 @@ -226,8 +226,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementDialogTitleBar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/GuiElementDialogTitleBar.cs startLine: 55 @@ -276,8 +276,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementDialogTitleBar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeTextElements path: Client/UI/Elements/Impl/Interactive/GuiElementDialogTitleBar.cs startLine: 135 @@ -309,8 +309,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementDialogTitleBar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/GuiElementDialogTitleBar.cs startLine: 245 @@ -345,8 +345,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementDialogTitleBar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseUpOnElement path: Client/UI/Elements/Impl/Interactive/GuiElementDialogTitleBar.cs startLine: 283 @@ -381,8 +381,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementDialogTitleBar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnKeyDown path: Client/UI/Elements/Impl/Interactive/GuiElementDialogTitleBar.cs startLine: 307 @@ -417,8 +417,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementDialogTitleBar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseUp path: Client/UI/Elements/Impl/Interactive/GuiElementDialogTitleBar.cs startLine: 312 @@ -453,8 +453,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementDialogTitleBar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseMove path: Client/UI/Elements/Impl/Interactive/GuiElementDialogTitleBar.cs startLine: 326 @@ -489,8 +489,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementDialogTitleBar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDown path: Client/UI/Elements/Impl/Interactive/GuiElementDialogTitleBar.cs startLine: 340 @@ -524,8 +524,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementDialogTitleBar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnFocusLost path: Client/UI/Elements/Impl/Interactive/GuiElementDialogTitleBar.cs startLine: 356 @@ -553,8 +553,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementDialogTitleBar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Interactive/GuiElementDialogTitleBar.cs startLine: 367 diff --git a/api/Vintagestory.API.Client.GuiElementDropDown.yml b/api/Vintagestory.API.Client.GuiElementDropDown.yml index 31becda9..55ad7e16 100644 --- a/api/Vintagestory.API.Client.GuiElementDropDown.yml +++ b/api/Vintagestory.API.Client.GuiElementDropDown.yml @@ -48,8 +48,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementDropDown path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 12 @@ -156,8 +156,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SingularNameCode path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 14 @@ -183,8 +183,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PluralNameCode path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 15 @@ -210,8 +210,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PluralMoreNameCode path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 16 @@ -237,8 +237,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SingularMoreNameCode path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 17 @@ -264,8 +264,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: listMenu path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 19 @@ -291,8 +291,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: richTextElem path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 20 @@ -318,8 +318,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: highlightTexture path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 22 @@ -345,8 +345,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: currentValueTexture path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 23 @@ -372,8 +372,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: arrowDownButtonReleased path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 25 @@ -399,8 +399,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: arrowDownButtonPressed path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 26 @@ -426,8 +426,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: highlightBounds path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 28 @@ -453,8 +453,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: onSelectionChanged path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 29 @@ -480,8 +480,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawOrder path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 37 @@ -512,8 +512,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Focusable path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 45 @@ -544,8 +544,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Scale path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 53 @@ -576,8 +576,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SelectedValue path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 68 @@ -605,8 +605,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SelectedIndices path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 77 @@ -634,8 +634,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SelectedValues path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 78 @@ -663,8 +663,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Enabled path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 81 @@ -695,8 +695,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 105 @@ -751,8 +751,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 135 @@ -787,8 +787,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 317 @@ -823,8 +823,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnKeyDown path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 349 @@ -859,8 +859,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseMove path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 355 @@ -895,8 +895,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseWheel path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 360 @@ -931,8 +931,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseUp path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 378 @@ -967,8 +967,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsPositionInside path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 386 @@ -1009,8 +1009,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDown path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 391 @@ -1044,8 +1044,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnFocusLost path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 407 @@ -1073,8 +1073,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetSelectedIndex path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 417 @@ -1108,8 +1108,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetSelectedValue path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 427 @@ -1143,8 +1143,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetList path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 438 @@ -1181,8 +1181,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 443 diff --git a/api/Vintagestory.API.Client.GuiElementDynamicText.yml b/api/Vintagestory.API.Client.GuiElementDynamicText.yml index b221cefd..f5c4e616 100644 --- a/api/Vintagestory.API.Client.GuiElementDynamicText.yml +++ b/api/Vintagestory.API.Client.GuiElementDynamicText.yml @@ -27,8 +27,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementDynamicText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementDynamicText path: Client/UI/Elements/Impl/Interactive/Text/GuiElementDynamicText.cs startLine: 10 @@ -145,8 +145,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementDynamicText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnClick path: Client/UI/Elements/Impl/Interactive/Text/GuiElementDynamicText.cs startLine: 16 @@ -172,8 +172,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementDynamicText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: autoHeight path: Client/UI/Elements/Impl/Interactive/Text/GuiElementDynamicText.cs startLine: 17 @@ -199,8 +199,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementDynamicText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: QuantityTextLines path: Client/UI/Elements/Impl/Interactive/Text/GuiElementDynamicText.cs startLine: 19 @@ -228,8 +228,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementDynamicText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Text/GuiElementDynamicText.cs startLine: 33 @@ -272,8 +272,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementDynamicText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeTextElements path: Client/UI/Elements/Impl/Interactive/Text/GuiElementDynamicText.cs startLine: 39 @@ -305,8 +305,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementDynamicText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AutoHeight path: Client/UI/Elements/Impl/Interactive/Text/GuiElementDynamicText.cs startLine: 48 @@ -333,8 +333,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementDynamicText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RecomposeText path: Client/UI/Elements/Impl/Interactive/Text/GuiElementDynamicText.cs startLine: 58 @@ -367,8 +367,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementDynamicText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/Text/GuiElementDynamicText.cs startLine: 89 @@ -403,8 +403,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementDynamicText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDownOnElement path: Client/UI/Elements/Impl/Interactive/Text/GuiElementDynamicText.cs startLine: 94 @@ -439,8 +439,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementDynamicText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetNewTextAsync path: Client/UI/Elements/Impl/Interactive/Text/GuiElementDynamicText.cs startLine: 101 @@ -475,8 +475,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementDynamicText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetNewText path: Client/UI/Elements/Impl/Interactive/Text/GuiElementDynamicText.cs startLine: 114 @@ -519,8 +519,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementDynamicText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Interactive/Text/GuiElementDynamicText.cs startLine: 127 diff --git a/api/Vintagestory.API.Client.GuiElementDynamicTextHelper.yml b/api/Vintagestory.API.Client.GuiElementDynamicTextHelper.yml index 05b429f3..00e98e8c 100644 --- a/api/Vintagestory.API.Client.GuiElementDynamicTextHelper.yml +++ b/api/Vintagestory.API.Client.GuiElementDynamicTextHelper.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementDynamicText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementDynamicTextHelper path: Client/UI/Elements/Impl/Interactive/Text/GuiElementDynamicText.cs startLine: 135 @@ -54,8 +54,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementDynamicText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddDynamicText path: Client/UI/Elements/Impl/Interactive/Text/GuiElementDynamicText.cs startLine: 146 @@ -105,8 +105,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementDynamicText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddDynamicText path: Client/UI/Elements/Impl/Interactive/Text/GuiElementDynamicText.cs startLine: 156 @@ -162,8 +162,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementDynamicText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDynamicText path: Client/UI/Elements/Impl/Interactive/Text/GuiElementDynamicText.cs startLine: 174 diff --git a/api/Vintagestory.API.Client.GuiElementEditableTextBase.OnTryTextChangeDelegate.yml b/api/Vintagestory.API.Client.GuiElementEditableTextBase.OnTryTextChangeDelegate.yml index 29984bac..d3653dd6 100644 --- a/api/Vintagestory.API.Client.GuiElementEditableTextBase.OnTryTextChangeDelegate.yml +++ b/api/Vintagestory.API.Client.GuiElementEditableTextBase.OnTryTextChangeDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnTryTextChangeDelegate path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 11 diff --git a/api/Vintagestory.API.Client.GuiElementEditableTextBase.yml b/api/Vintagestory.API.Client.GuiElementEditableTextBase.yml index 7f7a561c..b9cbcafe 100644 --- a/api/Vintagestory.API.Client.GuiElementEditableTextBase.yml +++ b/api/Vintagestory.API.Client.GuiElementEditableTextBase.yml @@ -49,8 +49,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementEditableTextBase path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 9 @@ -164,8 +164,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnCaretPositionChanged path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 33 @@ -191,8 +191,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnTextChanged path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 34 @@ -218,8 +218,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnTryTextChangeText path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 35 @@ -245,8 +245,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnCursorMoved path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 36 @@ -272,8 +272,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnKeyPressed path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 44 @@ -301,8 +301,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: lines path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 54 @@ -328,8 +328,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: linesStaging path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 58 @@ -357,8 +357,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WordWrap path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 60 @@ -384,8 +384,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetLines path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 63 @@ -412,8 +412,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TextLengthWithoutLineBreaks path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 65 @@ -441,8 +441,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CaretPosWithoutLineBreaks path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 73 @@ -470,8 +470,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: pcaretPosLine path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 102 @@ -497,8 +497,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: pcaretPosInLine path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 103 @@ -524,8 +524,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CaretPosLine path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 104 @@ -553,8 +553,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CaretPosInLine path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 115 @@ -582,8 +582,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Focusable path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 124 @@ -614,8 +614,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 135 @@ -655,8 +655,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnFocusGained path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 144 @@ -684,8 +684,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnFocusLost path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 151 @@ -713,8 +713,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetCaretPos path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 162 @@ -751,8 +751,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetCaretPos path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 213 @@ -789,8 +789,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 251 @@ -824,8 +824,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 261 @@ -862,8 +862,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadValue path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 277 @@ -897,8 +897,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Lineize path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 294 @@ -931,8 +931,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDownOnElement path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 413 @@ -967,8 +967,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnKeyDown path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 420 @@ -1003,8 +1003,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetText path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 518 @@ -1035,8 +1035,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnKeyPress path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 570 @@ -1071,8 +1071,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 604 @@ -1107,8 +1107,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 620 @@ -1136,8 +1136,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MoveCursor path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 634 @@ -1174,8 +1174,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetMaxLines path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 678 @@ -1209,8 +1209,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetMaxHeight path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEditableTextBase.cs startLine: 684 diff --git a/api/Vintagestory.API.Client.GuiElementElementListPickerBase-1.yml b/api/Vintagestory.API.Client.GuiElementElementListPickerBase-1.yml index b0e7f16d..aeb76d2f 100644 --- a/api/Vintagestory.API.Client.GuiElementElementListPickerBase-1.yml +++ b/api/Vintagestory.API.Client.GuiElementElementListPickerBase-1.yml @@ -29,8 +29,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementElementListPickerBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementElementListPickerBase path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementElementListPickerBase.cs startLine: 8 @@ -141,8 +141,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementElementListPickerBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: handler path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementElementListPickerBase.cs startLine: 10 @@ -170,8 +170,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementElementListPickerBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: On path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementElementListPickerBase.cs startLine: 15 @@ -201,8 +201,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementElementListPickerBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShowToolTip path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementElementListPickerBase.cs startLine: 21 @@ -230,8 +230,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementElementListPickerBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TooltipText path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementElementListPickerBase.cs startLine: 22 @@ -261,8 +261,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementElementListPickerBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Focusable path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementElementListPickerBase.cs startLine: 33 @@ -295,8 +295,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementElementListPickerBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementElementListPickerBase.cs startLine: 41 @@ -336,8 +336,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementElementListPickerBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementElementListPickerBase.cs startLine: 60 @@ -375,8 +375,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementElementListPickerBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawElement path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementElementListPickerBase.cs startLine: 71 @@ -410,8 +410,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementElementListPickerBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementElementListPickerBase.cs startLine: 97 @@ -446,8 +446,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementElementListPickerBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDownOnElement path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementElementListPickerBase.cs startLine: 114 @@ -484,8 +484,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementElementListPickerBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseUpOnElement path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementElementListPickerBase.cs startLine: 128 @@ -522,8 +522,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementElementListPickerBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseUp path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementElementListPickerBase.cs startLine: 138 @@ -560,8 +560,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementElementListPickerBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementElementListPickerBase.cs startLine: 148 @@ -595,8 +595,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementElementListPickerBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementElementListPickerBase.cs startLine: 156 diff --git a/api/Vintagestory.API.Client.GuiElementEmbossedText.yml b/api/Vintagestory.API.Client.GuiElementEmbossedText.yml index 8d3b4e8f..f347fe17 100644 --- a/api/Vintagestory.API.Client.GuiElementEmbossedText.yml +++ b/api/Vintagestory.API.Client.GuiElementEmbossedText.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEmbossedText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementEmbossedText path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEmbossedText.cs startLine: 4 @@ -139,8 +139,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEmbossedText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Padding path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEmbossedText.cs startLine: 6 @@ -166,8 +166,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEmbossedText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEmbossedText.cs startLine: 16 @@ -210,8 +210,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEmbossedText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsEnabled path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEmbossedText.cs startLine: 25 @@ -240,8 +240,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEmbossedText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetEnabled path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEmbossedText.cs startLine: 34 @@ -275,8 +275,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEmbossedText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeTextElements path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEmbossedText.cs startLine: 40 @@ -308,8 +308,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEmbossedText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEmbossedText.cs startLine: 106 @@ -344,8 +344,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementEmbossedText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Interactive/Text/GuiElementEmbossedText.cs startLine: 112 diff --git a/api/Vintagestory.API.Client.GuiElementGameOverlay.yml b/api/Vintagestory.API.Client.GuiElementGameOverlay.yml index aa4bda02..2cf637e9 100644 --- a/api/Vintagestory.API.Client.GuiElementGameOverlay.yml +++ b/api/Vintagestory.API.Client.GuiElementGameOverlay.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementGameOverlay.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementGameOverlay path: Client/UI/Elements/Impl/Static/GuiElementGameOverlay.cs startLine: 4 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementGameOverlay.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Static/GuiElementGameOverlay.cs startLine: 14 @@ -163,8 +163,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementGameOverlay.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Static/GuiElementGameOverlay.cs startLine: 19 diff --git a/api/Vintagestory.API.Client.GuiElementGameOverlyHelper.yml b/api/Vintagestory.API.Client.GuiElementGameOverlyHelper.yml index 1dd45a23..3e5bfaa1 100644 --- a/api/Vintagestory.API.Client.GuiElementGameOverlyHelper.yml +++ b/api/Vintagestory.API.Client.GuiElementGameOverlyHelper.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementGameOverlay.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementGameOverlyHelper path: Client/UI/Elements/Impl/Static/GuiElementGameOverlay.cs startLine: 34 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementGameOverlay.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddGameOverlay path: Client/UI/Elements/Impl/Static/GuiElementGameOverlay.cs startLine: 42 diff --git a/api/Vintagestory.API.Client.GuiElementGrayBackground.yml b/api/Vintagestory.API.Client.GuiElementGrayBackground.yml index 66ec9f1f..6e99a39b 100644 --- a/api/Vintagestory.API.Client.GuiElementGrayBackground.yml +++ b/api/Vintagestory.API.Client.GuiElementGrayBackground.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementGrayBackground.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementGrayBackground path: Client/UI/Elements/Impl/Static/GuiElementGrayBackground.cs startLine: 4 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementGrayBackground.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Static/GuiElementGrayBackground.cs startLine: 12 @@ -160,8 +160,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementGrayBackground.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Static/GuiElementGrayBackground.cs startLine: 17 diff --git a/api/Vintagestory.API.Client.GuiElementGrayBackgroundHelpber.yml b/api/Vintagestory.API.Client.GuiElementGrayBackgroundHelpber.yml index 5952902c..3170c8c4 100644 --- a/api/Vintagestory.API.Client.GuiElementGrayBackgroundHelpber.yml +++ b/api/Vintagestory.API.Client.GuiElementGrayBackgroundHelpber.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementGrayBackground.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementGrayBackgroundHelpber path: Client/UI/Elements/Impl/Static/GuiElementGrayBackground.cs startLine: 28 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementGrayBackground.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddGrayBG path: Client/UI/Elements/Impl/Static/GuiElementGrayBackground.cs startLine: 35 diff --git a/api/Vintagestory.API.Client.GuiElementHelpers.yml b/api/Vintagestory.API.Client.GuiElementHelpers.yml index cda30928..960c1851 100644 --- a/api/Vintagestory.API.Client.GuiElementHelpers.yml +++ b/api/Vintagestory.API.Client.GuiElementHelpers.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementImage.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementHelpers path: Client/UI/Elements/Impl/Static/GuiElementImage.cs startLine: 35 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementImage.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddImage path: Client/UI/Elements/Impl/Static/GuiElementImage.cs startLine: 37 diff --git a/api/Vintagestory.API.Client.GuiElementHorizontalTabs.yml b/api/Vintagestory.API.Client.GuiElementHorizontalTabs.yml index f1583f21..5daad4ff 100644 --- a/api/Vintagestory.API.Client.GuiElementHorizontalTabs.yml +++ b/api/Vintagestory.API.Client.GuiElementHorizontalTabs.yml @@ -29,8 +29,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementHorizontalTabs path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs startLine: 14 @@ -143,8 +143,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: activeElement path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs startLine: 26 @@ -170,8 +170,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: unscaledTabSpacing path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs startLine: 28 @@ -197,8 +197,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: unscaledTabPadding path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs startLine: 29 @@ -224,8 +224,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AlarmTabs path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs startLine: 31 @@ -251,8 +251,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Focusable path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs startLine: 36 @@ -283,8 +283,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs startLine: 47 @@ -333,8 +333,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetAlarmTab path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs startLine: 61 @@ -365,8 +365,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithAlarmTabs path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs startLine: 66 @@ -394,8 +394,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeTextElements path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs startLine: 76 @@ -427,8 +427,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs startLine: 210 @@ -463,8 +463,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnKeyDown path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs startLine: 237 @@ -499,8 +499,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDownOnElement path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs startLine: 254 @@ -535,8 +535,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs startLine: 281 @@ -573,8 +573,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs startLine: 292 diff --git a/api/Vintagestory.API.Client.GuiElementHoverText.yml b/api/Vintagestory.API.Client.GuiElementHoverText.yml index a82c9509..b5b0fed6 100644 --- a/api/Vintagestory.API.Client.GuiElementHoverText.yml +++ b/api/Vintagestory.API.Client.GuiElementHoverText.yml @@ -36,8 +36,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementHoverText path: Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs startLine: 7 @@ -148,8 +148,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DefaultBackground path: Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs startLine: 9 @@ -175,8 +175,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: fillBounds path: Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs startLine: 28 @@ -202,8 +202,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Background path: Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs startLine: 30 @@ -229,8 +229,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderColor path: Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs startLine: 33 @@ -258,8 +258,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ZPosition path: Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs startLine: 39 @@ -287,8 +287,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsVisible path: Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs startLine: 55 @@ -316,8 +316,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsNowShown path: Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs startLine: 56 @@ -345,8 +345,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawOrder path: Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs startLine: 58 @@ -377,8 +377,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs startLine: 73 @@ -428,8 +428,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeforeCalcBounds path: Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs startLine: 96 @@ -456,8 +456,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs startLine: 103 @@ -491,8 +491,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OutlineColor path: Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs startLine: 108 @@ -523,8 +523,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderBoundsDebug path: Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs startLine: 113 @@ -551,8 +551,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs startLine: 181 @@ -587,8 +587,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetNewText path: Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs startLine: 245 @@ -622,8 +622,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetAutoDisplay path: Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs startLine: 255 @@ -657,8 +657,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetVisible path: Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs startLine: 264 @@ -692,8 +692,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetAutoWidth path: Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs startLine: 272 @@ -726,8 +726,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetFollowMouse path: Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs startLine: 277 @@ -758,8 +758,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDownOnElement path: Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs startLine: 282 @@ -794,8 +794,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Interactive/Text/GuiElementHoverText.cs startLine: 287 diff --git a/api/Vintagestory.API.Client.GuiElementIconListPicker.yml b/api/Vintagestory.API.Client.GuiElementIconListPicker.yml index 3830c1e1..b0dcb89d 100644 --- a/api/Vintagestory.API.Client.GuiElementIconListPicker.yml +++ b/api/Vintagestory.API.Client.GuiElementIconListPicker.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementIconListPicker.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementIconListPicker path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementIconListPicker.cs startLine: 9 @@ -134,8 +134,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementIconListPicker.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementIconListPicker.cs startLine: 11 @@ -170,8 +170,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementIconListPicker.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawElement path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementIconListPicker.cs startLine: 15 diff --git a/api/Vintagestory.API.Client.GuiElementImage.yml b/api/Vintagestory.API.Client.GuiElementImage.yml index b385aa20..adf3bf22 100644 --- a/api/Vintagestory.API.Client.GuiElementImage.yml +++ b/api/Vintagestory.API.Client.GuiElementImage.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementImage.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementImage path: Client/UI/Elements/Impl/Static/GuiElementImage.cs startLine: 5 @@ -136,8 +136,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementImage.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Static/GuiElementImage.cs startLine: 9 @@ -172,8 +172,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementImage.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Static/GuiElementImage.cs startLine: 14 diff --git a/api/Vintagestory.API.Client.GuiElementImageBackgroundHelper.yml b/api/Vintagestory.API.Client.GuiElementImageBackgroundHelper.yml index f92936c3..0e7b109b 100644 --- a/api/Vintagestory.API.Client.GuiElementImageBackgroundHelper.yml +++ b/api/Vintagestory.API.Client.GuiElementImageBackgroundHelper.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementImageBackground.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementImageBackgroundHelper path: Client/UI/Elements/Impl/Static/GuiElementImageBackground.cs startLine: 49 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementImageBackground.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddImageBG path: Client/UI/Elements/Impl/Static/GuiElementImageBackground.cs startLine: 60 diff --git a/api/Vintagestory.API.Client.GuiElementInsetHelper.yml b/api/Vintagestory.API.Client.GuiElementInsetHelper.yml index 60239ef9..5620878c 100644 --- a/api/Vintagestory.API.Client.GuiElementInsetHelper.yml +++ b/api/Vintagestory.API.Client.GuiElementInsetHelper.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementInset.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementInsetHelper path: Client/UI/Elements/Impl/Static/GuiElementInset.cs startLine: 39 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementInset.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddInset path: Client/UI/Elements/Impl/Static/GuiElementInset.cs startLine: 48 diff --git a/api/Vintagestory.API.Client.GuiElementItemSlotGrid.yml b/api/Vintagestory.API.Client.GuiElementItemSlotGrid.yml index 4bdcad93..065aafcc 100644 --- a/api/Vintagestory.API.Client.GuiElementItemSlotGrid.yml +++ b/api/Vintagestory.API.Client.GuiElementItemSlotGrid.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGrid.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementItemSlotGrid path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGrid.cs startLine: 8 @@ -151,8 +151,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGrid.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGrid.cs startLine: 11 @@ -193,8 +193,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGrid.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DetermineAvailableSlots path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGrid.cs startLine: 24 diff --git a/api/Vintagestory.API.Client.GuiElementItemSlotGridBase.yml b/api/Vintagestory.API.Client.GuiElementItemSlotGridBase.yml index cbd13073..1176bc23 100644 --- a/api/Vintagestory.API.Client.GuiElementItemSlotGridBase.yml +++ b/api/Vintagestory.API.Client.GuiElementItemSlotGridBase.yml @@ -54,8 +54,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementItemSlotGridBase path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 18 @@ -152,8 +152,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: unscaledSlotPadding path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 20 @@ -179,8 +179,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: inventory path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 22 @@ -206,8 +206,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: cols path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 27 @@ -233,8 +233,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: rows path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 28 @@ -260,8 +260,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: prevSlotQuantity path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 29 @@ -287,8 +287,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: slotBounds path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 35 @@ -314,8 +314,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: scissorBounds path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 36 @@ -341,8 +341,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: slotTexture path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 38 @@ -368,8 +368,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: highlightSlotTexture path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 38 @@ -395,8 +395,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: crossedOutTexture path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 39 @@ -422,8 +422,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: slotQuantityTextures path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 40 @@ -449,8 +449,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: textComposer path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 42 @@ -476,8 +476,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: highlightSlotId path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 44 @@ -503,8 +503,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: hoverSlotId path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 45 @@ -530,8 +530,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: searchText path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 47 @@ -557,8 +557,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SendPacketHandler path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 49 @@ -584,8 +584,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanClickSlot path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 65 @@ -611,8 +611,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawIconHandler path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 69 @@ -638,8 +638,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AlwaysRenderIcon path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 70 @@ -667,8 +667,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Focusable path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 72 @@ -699,8 +699,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 85 @@ -746,8 +746,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 108 @@ -780,8 +780,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PostRenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 363 @@ -816,8 +816,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 416 @@ -852,8 +852,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnGuiClosed path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 511 @@ -881,8 +881,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OutlineColor path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 524 @@ -913,8 +913,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FilterItemsBySearchText path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 536 @@ -954,8 +954,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: KeyboardControlEnabled path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 645 @@ -981,8 +981,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseWheel path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 648 @@ -1017,8 +1017,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnKeyDown path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 696 @@ -1053,8 +1053,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDown path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 736 @@ -1089,8 +1089,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDownOnElement path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 741 @@ -1125,8 +1125,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseUp path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 793 @@ -1161,8 +1161,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseMove path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 806 @@ -1197,8 +1197,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseLeaveSlot path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 896 @@ -1232,8 +1232,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SlotClick path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 951 @@ -1274,8 +1274,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HighlightSlot path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 1004 @@ -1309,8 +1309,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveSlotHighlight path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 1012 @@ -1337,8 +1337,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridBase.cs startLine: 1040 diff --git a/api/Vintagestory.API.Client.GuiElementItemSlotGridExcl.yml b/api/Vintagestory.API.Client.GuiElementItemSlotGridExcl.yml index 54106a1c..3372451d 100644 --- a/api/Vintagestory.API.Client.GuiElementItemSlotGridExcl.yml +++ b/api/Vintagestory.API.Client.GuiElementItemSlotGridExcl.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridExcl.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementItemSlotGridExcl path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridExcl.cs startLine: 10 @@ -150,8 +150,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridExcl.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridExcl.cs startLine: 23 @@ -200,8 +200,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridExcl.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridExcl.cs startLine: 57 @@ -235,8 +235,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridExcl.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PostRenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementItemSlotGridExcl.cs startLine: 63 diff --git a/api/Vintagestory.API.Client.GuiElementItemstackInfo.yml b/api/Vintagestory.API.Client.GuiElementItemstackInfo.yml index 4790fb35..2e23a131 100644 --- a/api/Vintagestory.API.Client.GuiElementItemstackInfo.yml +++ b/api/Vintagestory.API.Client.GuiElementItemstackInfo.yml @@ -34,8 +34,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementItemstackInfo path: Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs startLine: 10 @@ -151,8 +151,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dirty path: Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs startLine: 12 @@ -178,8 +178,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Render path: Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs startLine: 13 @@ -205,8 +205,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: titleElement path: Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs startLine: 14 @@ -232,8 +232,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: descriptionElement path: Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs startLine: 15 @@ -259,8 +259,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: texture path: Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs startLine: 16 @@ -286,8 +286,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ItemStackSize path: Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs startLine: 18 @@ -313,8 +313,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MarginTop path: Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs startLine: 19 @@ -340,8 +340,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BoxWidth path: Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs startLine: 20 @@ -367,8 +367,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinBoxHeight path: Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs startLine: 21 @@ -394,8 +394,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: curSlot path: Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs startLine: 25 @@ -421,8 +421,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: onRenderStack path: Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs startLine: 34 @@ -448,8 +448,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RecompCheckIgnoredStackAttributes path: Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs startLine: 36 @@ -475,8 +475,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs startLine: 44 @@ -516,8 +516,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs startLine: 84 @@ -551,8 +551,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AsyncRecompose path: Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs startLine: 117 @@ -577,8 +577,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs startLine: 209 @@ -613,8 +613,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSlot path: Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs startLine: 238 @@ -644,8 +644,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetSourceSlot path: Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs startLine: 249 @@ -685,8 +685,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs startLine: 278 diff --git a/api/Vintagestory.API.Client.GuiElementListMenu.yml b/api/Vintagestory.API.Client.GuiElementListMenu.yml index f06a86ac..258d15a6 100644 --- a/api/Vintagestory.API.Client.GuiElementListMenu.yml +++ b/api/Vintagestory.API.Client.GuiElementListMenu.yml @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementListMenu path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 9 @@ -161,8 +161,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Values path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 11 @@ -190,8 +190,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Names path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 12 @@ -219,8 +219,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxHeight path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 17 @@ -248,8 +248,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: expandedBoxWidth path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 19 @@ -275,8 +275,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: expandedBoxHeight path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 20 @@ -302,8 +302,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: unscaledLineHeight path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 22 @@ -329,8 +329,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SelectedIndex path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 27 @@ -360,8 +360,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HoveredIndex path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 56 @@ -391,8 +391,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SelectedIndices path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 60 @@ -422,8 +422,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: onSelectionChanged path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 66 @@ -449,8 +449,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: hoverTexture path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 68 @@ -476,8 +476,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: dropDownTexture path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 69 @@ -503,8 +503,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: scrollbarTexture path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 70 @@ -530,8 +530,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: expanded path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 72 @@ -557,8 +557,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: multiSelect path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 73 @@ -584,8 +584,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: scrollOffY path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 75 @@ -611,8 +611,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: scrollbar path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 77 @@ -638,8 +638,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: richtTextElem path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 78 @@ -665,8 +665,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: visibleBounds path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 80 @@ -692,8 +692,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsOpened path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 85 @@ -723,8 +723,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawOrder path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 90 @@ -755,8 +755,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Focusable path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 95 @@ -787,8 +787,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 111 @@ -843,8 +843,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 146 @@ -878,8 +878,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeDynamicElements path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 154 @@ -906,8 +906,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsPositionInside path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 322 @@ -948,8 +948,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 334 @@ -984,8 +984,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnKeyDown path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 409 @@ -1020,8 +1020,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseMove path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 445 @@ -1056,8 +1056,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseUp path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 473 @@ -1092,8 +1092,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Open path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 487 @@ -1120,8 +1120,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDown path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 497 @@ -1155,8 +1155,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseWheel path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 544 @@ -1191,8 +1191,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnFocusLost path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 553 @@ -1220,8 +1220,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetSelectedIndex path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 563 @@ -1255,8 +1255,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetSelectedValue path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 572 @@ -1290,8 +1290,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetList path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 607 @@ -1328,8 +1328,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementListMenu.cs startLine: 615 diff --git a/api/Vintagestory.API.Client.GuiElementMainMenuCell.yml b/api/Vintagestory.API.Client.GuiElementMainMenuCell.yml index e91e9c01..7001232c 100644 --- a/api/Vintagestory.API.Client.GuiElementMainMenuCell.yml +++ b/api/Vintagestory.API.Client.GuiElementMainMenuCell.yml @@ -30,8 +30,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/GuiElementMainMenuCell.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementMainMenuCell path: Client/UI/Elements/Impl/Misc/GuiElementMainMenuCell.cs startLine: 7 @@ -150,8 +150,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/GuiElementMainMenuCell.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: unscaledRightBoxWidth path: Client/UI/Elements/Impl/Misc/GuiElementMainMenuCell.cs startLine: 9 @@ -177,8 +177,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/GuiElementMainMenuCell.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: cellEntry path: Client/UI/Elements/Impl/Misc/GuiElementMainMenuCell.cs startLine: 15 @@ -206,8 +206,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/GuiElementMainMenuCell.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShowModifyIcons path: Client/UI/Elements/Impl/Misc/GuiElementMainMenuCell.cs startLine: 18 @@ -233,8 +233,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/GuiElementMainMenuCell.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MainTextWidthSub path: Client/UI/Elements/Impl/Misc/GuiElementMainMenuCell.cs startLine: 28 @@ -260,8 +260,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/GuiElementMainMenuCell.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDownOnCellLeft path: Client/UI/Elements/Impl/Misc/GuiElementMainMenuCell.cs startLine: 30 @@ -287,8 +287,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/GuiElementMainMenuCell.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDownOnCellRight path: Client/UI/Elements/Impl/Misc/GuiElementMainMenuCell.cs startLine: 31 @@ -314,8 +314,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/GuiElementMainMenuCell.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FixedHeight path: Client/UI/Elements/Impl/Misc/GuiElementMainMenuCell.cs startLine: 34 @@ -341,8 +341,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/GuiElementMainMenuCell.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Misc/GuiElementMainMenuCell.cs startLine: 47 @@ -382,8 +382,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/GuiElementMainMenuCell.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Compose path: Client/UI/Elements/Impl/Misc/GuiElementMainMenuCell.cs startLine: 71 @@ -408,8 +408,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/GuiElementMainMenuCell.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UpdateCellHeight path: Client/UI/Elements/Impl/Misc/GuiElementMainMenuCell.cs startLine: 220 @@ -438,8 +438,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/GuiElementMainMenuCell.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnRenderInteractiveElements path: Client/UI/Elements/Impl/Misc/GuiElementMainMenuCell.cs startLine: 254 @@ -478,8 +478,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/GuiElementMainMenuCell.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Misc/GuiElementMainMenuCell.cs startLine: 298 @@ -509,8 +509,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/GuiElementMainMenuCell.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseUpOnElement path: Client/UI/Elements/Impl/Misc/GuiElementMainMenuCell.cs startLine: 308 @@ -546,8 +546,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/GuiElementMainMenuCell.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseMoveOnElement path: Client/UI/Elements/Impl/Misc/GuiElementMainMenuCell.cs startLine: 331 @@ -583,8 +583,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/GuiElementMainMenuCell.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDownOnElement path: Client/UI/Elements/Impl/Misc/GuiElementMainMenuCell.cs startLine: 336 diff --git a/api/Vintagestory.API.Client.GuiElementNumberInput.yml b/api/Vintagestory.API.Client.GuiElementNumberInput.yml index 4adec599..eb228dac 100644 --- a/api/Vintagestory.API.Client.GuiElementNumberInput.yml +++ b/api/Vintagestory.API.Client.GuiElementNumberInput.yml @@ -24,8 +24,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementNumberInput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementNumberInput path: Client/UI/Elements/Impl/Interactive/GuiElementNumberInput.cs startLine: 10 @@ -172,8 +172,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementNumberInput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Interval path: Client/UI/Elements/Impl/Interactive/GuiElementNumberInput.cs startLine: 13 @@ -199,8 +199,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementNumberInput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: buttonHighlightTexture path: Client/UI/Elements/Impl/Interactive/GuiElementNumberInput.cs startLine: 16 @@ -226,8 +226,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementNumberInput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/GuiElementNumberInput.cs startLine: 25 @@ -270,8 +270,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementNumberInput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Client/UI/Elements/Impl/Interactive/GuiElementNumberInput.cs startLine: 34 @@ -301,8 +301,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementNumberInput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeTextElements path: Client/UI/Elements/Impl/Interactive/GuiElementNumberInput.cs startLine: 42 @@ -334,8 +334,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementNumberInput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/GuiElementNumberInput.cs startLine: 129 @@ -370,8 +370,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementNumberInput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseWheel path: Client/UI/Elements/Impl/Interactive/GuiElementNumberInput.cs startLine: 155 @@ -406,8 +406,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementNumberInput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDownOnElement path: Client/UI/Elements/Impl/Interactive/GuiElementNumberInput.cs startLine: 180 @@ -442,8 +442,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementNumberInput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Interactive/GuiElementNumberInput.cs startLine: 208 diff --git a/api/Vintagestory.API.Client.GuiElementParent.yml b/api/Vintagestory.API.Client.GuiElementParent.yml index b562274d..88b9b4c0 100644 --- a/api/Vintagestory.API.Client.GuiElementParent.yml +++ b/api/Vintagestory.API.Client.GuiElementParent.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementParent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementParent path: Client/UI/Elements/Impl/Static/GuiElementParent.cs startLine: 4 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementParent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Static/GuiElementParent.cs startLine: 6 @@ -156,8 +156,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementParent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Static/GuiElementParent.cs startLine: 10 diff --git a/api/Vintagestory.API.Client.GuiElementPassiveItemSlot.yml b/api/Vintagestory.API.Client.GuiElementPassiveItemSlot.yml index f28ed748..781aef77 100644 --- a/api/Vintagestory.API.Client.GuiElementPassiveItemSlot.yml +++ b/api/Vintagestory.API.Client.GuiElementPassiveItemSlot.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementPassiveItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementPassiveItemSlot path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementPassiveItemSlot.cs startLine: 9 @@ -126,8 +126,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementPassiveItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: unscaledItemSize path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementPassiveItemSlot.cs startLine: 11 @@ -153,8 +153,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementPassiveItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: unscaledSlotSize path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementPassiveItemSlot.cs startLine: 13 @@ -180,8 +180,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementPassiveItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementPassiveItemSlot.cs startLine: 30 @@ -227,8 +227,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementPassiveItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementPassiveItemSlot.cs startLine: 40 @@ -262,8 +262,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementPassiveItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementPassiveItemSlot.cs startLine: 63 diff --git a/api/Vintagestory.API.Client.GuiElementRichtext.yml b/api/Vintagestory.API.Client.GuiElementRichtext.yml index 3aaac9f3..99e161e9 100644 --- a/api/Vintagestory.API.Client.GuiElementRichtext.yml +++ b/api/Vintagestory.API.Client.GuiElementRichtext.yml @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementRichtext path: Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs startLine: 11 @@ -142,8 +142,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Components path: Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs startLine: 13 @@ -169,8 +169,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: flowPath path: Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs startLine: 14 @@ -196,8 +196,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: zPos path: Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs startLine: 15 @@ -223,8 +223,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DebugLogging path: Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs startLine: 17 @@ -250,8 +250,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: richtTextTexture path: Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs startLine: 19 @@ -277,8 +277,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Debug path: Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs startLine: 21 @@ -304,8 +304,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderColor path: Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs startLine: 23 @@ -331,8 +331,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxLineWidth path: Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs startLine: 26 @@ -360,8 +360,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TotalHeight path: Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs startLine: 46 @@ -389,8 +389,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs startLine: 66 @@ -425,8 +425,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeforeCalcBounds path: Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs startLine: 73 @@ -453,8 +453,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs startLine: 79 @@ -488,8 +488,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HalfComposed path: Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs startLine: 88 @@ -515,8 +515,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Compose path: Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs startLine: 90 @@ -547,8 +547,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: genTexture path: Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs startLine: 128 @@ -573,8 +573,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CalcHeightAndPositions path: Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs startLine: 139 @@ -599,8 +599,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeFor path: Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs startLine: 425 @@ -632,8 +632,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RecomposeText path: Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs startLine: 464 @@ -660,8 +660,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs startLine: 481 @@ -696,8 +696,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseMove path: Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs startLine: 507 @@ -732,8 +732,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDownOnElement path: Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs startLine: 520 @@ -768,8 +768,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseUp path: Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs startLine: 533 @@ -804,8 +804,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetNewText path: Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs startLine: 550 @@ -840,8 +840,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetNewText path: Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs startLine: 556 @@ -872,8 +872,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AppendText path: Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs startLine: 562 @@ -904,8 +904,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetNewTextWithoutRecompose path: Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs startLine: 568 @@ -942,8 +942,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RecomposeInto path: Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs startLine: 587 @@ -973,8 +973,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Interactive/Text/GuiElementRichtext.cs startLine: 594 diff --git a/api/Vintagestory.API.Client.GuiElementScrollbar.yml b/api/Vintagestory.API.Client.GuiElementScrollbar.yml index 4468d559..5aa8b072 100644 --- a/api/Vintagestory.API.Client.GuiElementScrollbar.yml +++ b/api/Vintagestory.API.Client.GuiElementScrollbar.yml @@ -45,8 +45,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementScrollbar path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs startLine: 6 @@ -147,8 +147,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DefaultScrollbarWidth path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs startLine: 8 @@ -174,8 +174,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DeafultScrollbarPadding path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs startLine: 9 @@ -201,8 +201,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: onNewScrollbarValue path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs startLine: 11 @@ -228,8 +228,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: mouseDownOnScrollbarHandle path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs startLine: 14 @@ -255,8 +255,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: mouseDownStartY path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs startLine: 15 @@ -282,8 +282,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: visibleHeight path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs startLine: 17 @@ -309,8 +309,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: totalHeight path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs startLine: 18 @@ -336,8 +336,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: currentHandlePosition path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs startLine: 20 @@ -363,8 +363,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: currentHandleHeight path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs startLine: 21 @@ -390,8 +390,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: zOffset path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs startLine: 23 @@ -417,8 +417,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: handleTexture path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs startLine: 25 @@ -444,8 +444,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Focusable path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs startLine: 27 @@ -476,8 +476,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ScrollConversionFactor path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs startLine: 32 @@ -507,8 +507,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentYPosition path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs startLine: 47 @@ -538,8 +538,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs startLine: 65 @@ -579,8 +579,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs startLine: 72 @@ -615,8 +615,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RecomposeHandle path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs startLine: 85 @@ -641,8 +641,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs startLine: 109 @@ -677,8 +677,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetHeights path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs startLine: 126 @@ -715,8 +715,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetNewTotalHeight path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs startLine: 136 @@ -750,8 +750,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetScrollbarPosition path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs startLine: 151 @@ -782,8 +782,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseWheel path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs startLine: 158 @@ -818,8 +818,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDownOnElement path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs startLine: 171 @@ -854,8 +854,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseUp path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs startLine: 186 @@ -890,8 +890,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseMove path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs startLine: 191 @@ -926,8 +926,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnKeyDown path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs startLine: 199 @@ -962,8 +962,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TriggerChanged path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs startLine: 226 @@ -990,8 +990,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ScrollToBottom path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs startLine: 234 @@ -1018,8 +1018,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnsureVisible path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs startLine: 256 @@ -1052,8 +1052,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementScrollbar.cs startLine: 277 diff --git a/api/Vintagestory.API.Client.GuiElementSkillItemGrid.yml b/api/Vintagestory.API.Client.GuiElementSkillItemGrid.yml index c4aede75..bca9c282 100644 --- a/api/Vintagestory.API.Client.GuiElementSkillItemGrid.yml +++ b/api/Vintagestory.API.Client.GuiElementSkillItemGrid.yml @@ -24,8 +24,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementSkillItemGrid.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementSkillItemGrid path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementSkillItemGrid.cs startLine: 9 @@ -127,8 +127,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementSkillItemGrid.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnSlotClick path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementSkillItemGrid.cs startLine: 15 @@ -154,8 +154,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementSkillItemGrid.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnSlotOver path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementSkillItemGrid.cs startLine: 16 @@ -181,8 +181,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementSkillItemGrid.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: selectedIndex path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementSkillItemGrid.cs startLine: 18 @@ -208,8 +208,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementSkillItemGrid.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Focusable path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementSkillItemGrid.cs startLine: 22 @@ -240,8 +240,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementSkillItemGrid.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementSkillItemGrid.cs startLine: 36 @@ -290,8 +290,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementSkillItemGrid.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementSkillItemGrid.cs startLine: 49 @@ -325,8 +325,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementSkillItemGrid.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementSkillItemGrid.cs startLine: 98 @@ -361,8 +361,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementSkillItemGrid.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDownOnElement path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementSkillItemGrid.cs startLine: 146 @@ -397,8 +397,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Inventory/GuiElementSkillItemGrid.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Interactive/Inventory/GuiElementSkillItemGrid.cs startLine: 168 diff --git a/api/Vintagestory.API.Client.GuiElementSlider.yml b/api/Vintagestory.API.Client.GuiElementSlider.yml index 9c023abc..9203ab85 100644 --- a/api/Vintagestory.API.Client.GuiElementSlider.yml +++ b/api/Vintagestory.API.Client.GuiElementSlider.yml @@ -29,8 +29,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementSlider path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs startLine: 10 @@ -130,8 +130,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnSliderTooltip path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs startLine: 37 @@ -157,8 +157,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Focusable path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs startLine: 55 @@ -189,8 +189,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs startLine: 63 @@ -230,8 +230,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs startLine: 74 @@ -265,8 +265,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs startLine: 183 @@ -301,8 +301,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDownOnElement path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs startLine: 241 @@ -337,8 +337,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseUp path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs startLine: 252 @@ -373,8 +373,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseMove path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs startLine: 267 @@ -409,8 +409,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseWheel path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs startLine: 280 @@ -445,8 +445,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetAlarmValue path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs startLine: 340 @@ -480,8 +480,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValues path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs startLine: 354 @@ -527,8 +527,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs startLine: 366 @@ -559,8 +559,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs startLine: 374 @@ -589,8 +589,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs startLine: 379 diff --git a/api/Vintagestory.API.Client.GuiElementSliderOld.yml b/api/Vintagestory.API.Client.GuiElementSliderOld.yml index ef4a88cd..6778b420 100644 --- a/api/Vintagestory.API.Client.GuiElementSliderOld.yml +++ b/api/Vintagestory.API.Client.GuiElementSliderOld.yml @@ -24,8 +24,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSliderOld.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementSliderOld path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSliderOld.cs startLine: 8 @@ -125,8 +125,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSliderOld.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSliderOld.cs startLine: 46 @@ -161,8 +161,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSliderOld.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSliderOld.cs startLine: 51 @@ -196,8 +196,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSliderOld.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSliderOld.cs startLine: 143 @@ -232,8 +232,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSliderOld.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDownOnElement path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSliderOld.cs startLine: 195 @@ -268,8 +268,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSliderOld.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseUp path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSliderOld.cs startLine: 204 @@ -304,8 +304,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSliderOld.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseMove path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSliderOld.cs startLine: 217 @@ -340,8 +340,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSliderOld.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetAlarmValue path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSliderOld.cs startLine: 265 @@ -372,8 +372,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSliderOld.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: setValues path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSliderOld.cs startLine: 272 @@ -412,8 +412,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSliderOld.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSliderOld.cs startLine: 283 diff --git a/api/Vintagestory.API.Client.GuiElementStatbar.yml b/api/Vintagestory.API.Client.GuiElementStatbar.yml index 373ab759..4746c682 100644 --- a/api/Vintagestory.API.Client.GuiElementStatbar.yml +++ b/api/Vintagestory.API.Client.GuiElementStatbar.yml @@ -31,8 +31,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementStatbar path: Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs startLine: 12 @@ -150,8 +150,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HideWhenFull path: Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs startLine: 22 @@ -179,8 +179,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldFlash path: Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs startLine: 32 @@ -206,8 +206,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FlashTime path: Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs startLine: 33 @@ -233,8 +233,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShowValueOnHover path: Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs startLine: 34 @@ -260,8 +260,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: onGetStatbarValue path: Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs startLine: 38 @@ -287,8 +287,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: valueFont path: Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs startLine: 39 @@ -314,8 +314,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DefaultHeight path: Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs startLine: 41 @@ -341,8 +341,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs startLine: 51 @@ -388,8 +388,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs startLine: 66 @@ -423,8 +423,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs startLine: 215 @@ -459,8 +459,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetLineInterval path: Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs startLine: 266 @@ -494,8 +494,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs startLine: 275 @@ -529,8 +529,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs startLine: 282 @@ -557,8 +557,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValues path: Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs startLine: 293 @@ -598,8 +598,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetMinMax path: Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs startLine: 307 @@ -636,8 +636,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs startLine: 314 diff --git a/api/Vintagestory.API.Client.GuiElementStaticText.yml b/api/Vintagestory.API.Client.GuiElementStaticText.yml index 8bc4aa2c..2462c512 100644 --- a/api/Vintagestory.API.Client.GuiElementStaticText.yml +++ b/api/Vintagestory.API.Client.GuiElementStaticText.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementStaticText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementStaticText path: Client/UI/Elements/Impl/Static/GuiElementStaticText.cs startLine: 4 @@ -142,8 +142,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementStaticText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: offsetX path: Client/UI/Elements/Impl/Static/GuiElementStaticText.cs startLine: 7 @@ -169,8 +169,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementStaticText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: offsetY path: Client/UI/Elements/Impl/Static/GuiElementStaticText.cs startLine: 8 @@ -196,8 +196,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementStaticText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Static/GuiElementStaticText.cs startLine: 18 @@ -243,8 +243,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementStaticText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetTextHeight path: Client/UI/Elements/Impl/Static/GuiElementStaticText.cs startLine: 23 @@ -271,8 +271,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementStaticText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeTextElements path: Client/UI/Elements/Impl/Static/GuiElementStaticText.cs startLine: 28 @@ -304,8 +304,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementStaticText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AutoBoxSize path: Client/UI/Elements/Impl/Static/GuiElementStaticText.cs startLine: 44 @@ -339,8 +339,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementStaticText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Client/UI/Elements/Impl/Static/GuiElementStaticText.cs startLine: 49 @@ -371,8 +371,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementStaticText.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AutoFontSize path: Client/UI/Elements/Impl/Static/GuiElementStaticText.cs startLine: 57 diff --git a/api/Vintagestory.API.Client.GuiElementSwitch.yml b/api/Vintagestory.API.Client.GuiElementSwitch.yml index ea8c353e..2e1030f0 100644 --- a/api/Vintagestory.API.Client.GuiElementSwitch.yml +++ b/api/Vintagestory.API.Client.GuiElementSwitch.yml @@ -24,8 +24,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitch.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementSwitch path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitch.cs startLine: 5 @@ -127,8 +127,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitch.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: On path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitch.cs startLine: 14 @@ -156,8 +156,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitch.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Focusable path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitch.cs startLine: 19 @@ -188,8 +188,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitch.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitch.cs startLine: 29 @@ -235,8 +235,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitch.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitch.cs startLine: 42 @@ -271,8 +271,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitch.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitch.cs startLine: 71 @@ -307,8 +307,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitch.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDownOnElement path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitch.cs startLine: 81 @@ -343,8 +343,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitch.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnKeyDown path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitch.cs startLine: 91 @@ -379,8 +379,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitch.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitch.cs startLine: 107 @@ -414,8 +414,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitch.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitch.cs startLine: 112 diff --git a/api/Vintagestory.API.Client.GuiElementSwitchOld.yml b/api/Vintagestory.API.Client.GuiElementSwitchOld.yml index af498847..10453c86 100644 --- a/api/Vintagestory.API.Client.GuiElementSwitchOld.yml +++ b/api/Vintagestory.API.Client.GuiElementSwitchOld.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitchOld.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementSwitchOld path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitchOld.cs startLine: 5 @@ -137,8 +137,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitchOld.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: On path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitchOld.cs startLine: 17 @@ -164,8 +164,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitchOld.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitchOld.cs startLine: 19 @@ -200,8 +200,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitchOld.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitchOld.cs startLine: 29 @@ -236,8 +236,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitchOld.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitchOld.cs startLine: 64 @@ -272,8 +272,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitchOld.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDownOnElement path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSwitchOld.cs startLine: 73 diff --git a/api/Vintagestory.API.Client.GuiElementTextArea.yml b/api/Vintagestory.API.Client.GuiElementTextArea.yml index 71591002..7c6ce57f 100644 --- a/api/Vintagestory.API.Client.GuiElementTextArea.yml +++ b/api/Vintagestory.API.Client.GuiElementTextArea.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementTextArea.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementTextArea path: Client/UI/Elements/Impl/Interactive/GuiElementTextArea.cs startLine: 5 @@ -163,8 +163,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementTextArea.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Autoheight path: Client/UI/Elements/Impl/Interactive/GuiElementTextArea.cs startLine: 11 @@ -190,8 +190,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementTextArea.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/GuiElementTextArea.cs startLine: 20 @@ -234,8 +234,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementTextArea.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeTextElements path: Client/UI/Elements/Impl/Interactive/GuiElementTextArea.cs startLine: 38 @@ -267,8 +267,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementTextArea.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/GuiElementTextArea.cs startLine: 67 @@ -303,8 +303,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementTextArea.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Interactive/GuiElementTextArea.cs startLine: 80 @@ -332,8 +332,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementTextArea.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetFont path: Client/UI/Elements/Impl/Interactive/GuiElementTextArea.cs startLine: 86 diff --git a/api/Vintagestory.API.Client.GuiElementTextBase.yml b/api/Vintagestory.API.Client.GuiElementTextBase.yml index 148f4e74..5c95575d 100644 --- a/api/Vintagestory.API.Client.GuiElementTextBase.yml +++ b/api/Vintagestory.API.Client.GuiElementTextBase.yml @@ -27,8 +27,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementTextBase path: Client/UI/Elements/Impl/Static/GuiElementTextBase.cs startLine: 4 @@ -153,8 +153,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: textUtil path: Client/UI/Elements/Impl/Static/GuiElementTextBase.cs startLine: 6 @@ -180,8 +180,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: text path: Client/UI/Elements/Impl/Static/GuiElementTextBase.cs startLine: 8 @@ -207,8 +207,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Text path: Client/UI/Elements/Impl/Static/GuiElementTextBase.cs startLine: 9 @@ -236,8 +236,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: textPathMode path: Client/UI/Elements/Impl/Static/GuiElementTextBase.cs startLine: 14 @@ -265,8 +265,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Font path: Client/UI/Elements/Impl/Static/GuiElementTextBase.cs startLine: 19 @@ -294,8 +294,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Static/GuiElementTextBase.cs startLine: 33 @@ -338,8 +338,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Static/GuiElementTextBase.cs startLine: 40 @@ -373,8 +373,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeTextElements path: Client/UI/Elements/Impl/Static/GuiElementTextBase.cs startLine: 47 @@ -404,8 +404,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMultilineTextHeight path: Client/UI/Elements/Impl/Static/GuiElementTextBase.cs startLine: 50 @@ -432,8 +432,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawMultilineTextAt path: Client/UI/Elements/Impl/Static/GuiElementTextBase.cs startLine: 55 @@ -472,8 +472,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawTextLineAt path: Client/UI/Elements/Impl/Static/GuiElementTextBase.cs startLine: 82 @@ -519,8 +519,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Static/GuiElementTextBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetText path: Client/UI/Elements/Impl/Static/GuiElementTextBase.cs startLine: 91 diff --git a/api/Vintagestory.API.Client.GuiElementTextButton.yml b/api/Vintagestory.API.Client.GuiElementTextButton.yml index e0f23a31..5bd7f039 100644 --- a/api/Vintagestory.API.Client.GuiElementTextButton.yml +++ b/api/Vintagestory.API.Client.GuiElementTextButton.yml @@ -33,8 +33,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementTextButton path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs startLine: 15 @@ -132,8 +132,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlaySound path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs startLine: 33 @@ -159,8 +159,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Padding path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs startLine: 35 @@ -186,8 +186,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Visible path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs startLine: 39 @@ -213,8 +213,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Focusable path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs startLine: 41 @@ -245,8 +245,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Text path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs startLine: 43 @@ -274,8 +274,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs startLine: 63 @@ -327,8 +327,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetOrientation path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs startLine: 83 @@ -359,8 +359,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeforeCalcBounds path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs startLine: 89 @@ -387,8 +387,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs startLine: 98 @@ -422,8 +422,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs startLine: 235 @@ -458,8 +458,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnKeyDown path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs startLine: 257 @@ -494,8 +494,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseMove path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs startLine: 276 @@ -530,8 +530,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: setIsOver path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs startLine: 283 @@ -556,8 +556,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDownOnElement path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs startLine: 288 @@ -592,8 +592,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseUp path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs startLine: 301 @@ -628,8 +628,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseUpOnElement path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs startLine: 312 @@ -664,8 +664,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetActive path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs startLine: 328 @@ -699,8 +699,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementTextButton.cs startLine: 333 diff --git a/api/Vintagestory.API.Client.GuiElementTextInput.yml b/api/Vintagestory.API.Client.GuiElementTextInput.yml index 2d42cc53..7baf07eb 100644 --- a/api/Vintagestory.API.Client.GuiElementTextInput.yml +++ b/api/Vintagestory.API.Client.GuiElementTextInput.yml @@ -27,8 +27,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementTextInput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementTextInput path: Client/UI/Elements/Impl/Interactive/GuiElementTextInput.cs startLine: 5 @@ -168,8 +168,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementTextInput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: highlightTexture path: Client/UI/Elements/Impl/Interactive/GuiElementTextInput.cs startLine: 7 @@ -195,8 +195,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementTextInput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: highlightBounds path: Client/UI/Elements/Impl/Interactive/GuiElementTextInput.cs startLine: 8 @@ -222,8 +222,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementTextInput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: refocusStage path: Client/UI/Elements/Impl/Interactive/GuiElementTextInput.cs startLine: 12 @@ -249,8 +249,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementTextInput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/GuiElementTextInput.cs startLine: 24 @@ -293,8 +293,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementTextInput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HideCharacters path: Client/UI/Elements/Impl/Interactive/GuiElementTextInput.cs startLine: 34 @@ -321,8 +321,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementTextInput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetPlaceHolderText path: Client/UI/Elements/Impl/Interactive/GuiElementTextInput.cs startLine: 39 @@ -353,8 +353,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementTextInput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeTextElements path: Client/UI/Elements/Impl/Interactive/GuiElementTextInput.cs startLine: 48 @@ -386,8 +386,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementTextInput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/GuiElementTextInput.cs startLine: 73 @@ -422,8 +422,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementTextInput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnFocusLost path: Client/UI/Elements/Impl/Interactive/GuiElementTextInput.cs startLine: 111 @@ -451,8 +451,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementTextInput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnFocusGained path: Client/UI/Elements/Impl/Interactive/GuiElementTextInput.cs startLine: 117 @@ -480,8 +480,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementTextInput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnKeyDown path: Client/UI/Elements/Impl/Interactive/GuiElementTextInput.cs startLine: 122 @@ -516,8 +516,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementTextInput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Interactive/GuiElementTextInput.cs startLine: 135 diff --git a/api/Vintagestory.API.Client.GuiElementToggleButton.yml b/api/Vintagestory.API.Client.GuiElementToggleButton.yml index 4da71750..5a7be9f3 100644 --- a/api/Vintagestory.API.Client.GuiElementToggleButton.yml +++ b/api/Vintagestory.API.Client.GuiElementToggleButton.yml @@ -27,8 +27,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementToggleButton path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs startLine: 8 @@ -141,8 +141,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Toggleable path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs startLine: 15 @@ -170,8 +170,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: On path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs startLine: 20 @@ -199,8 +199,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Focusable path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs startLine: 36 @@ -231,8 +231,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs startLine: 48 @@ -284,8 +284,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs startLine: 65 @@ -321,8 +321,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs startLine: 168 @@ -357,8 +357,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDownOnElement path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs startLine: 189 @@ -393,8 +393,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseUpOnElement path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs startLine: 203 @@ -429,8 +429,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseUp path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs startLine: 213 @@ -465,8 +465,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnKeyDown path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs startLine: 219 @@ -501,8 +501,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs startLine: 237 @@ -536,8 +536,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementToggleButton.cs startLine: 245 diff --git a/api/Vintagestory.API.Client.GuiElementVerticalTabs.yml b/api/Vintagestory.API.Client.GuiElementVerticalTabs.yml index 0836041e..c015df0a 100644 --- a/api/Vintagestory.API.Client.GuiElementVerticalTabs.yml +++ b/api/Vintagestory.API.Client.GuiElementVerticalTabs.yml @@ -38,8 +38,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiElementVerticalTabs path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs startLine: 6 @@ -152,8 +152,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: handler path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs startLine: 8 @@ -179,8 +179,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: tabs path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs startLine: 9 @@ -206,8 +206,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: baseTexture path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs startLine: 10 @@ -233,8 +233,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: hoverTextures path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs startLine: 11 @@ -260,8 +260,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: tabWidths path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs startLine: 12 @@ -287,8 +287,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: selectedFont path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs startLine: 13 @@ -314,8 +314,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: unscaledTabSpacing path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs startLine: 14 @@ -341,8 +341,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: unscaledTabHeight path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs startLine: 15 @@ -368,8 +368,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: unscaledTabPadding path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs startLine: 16 @@ -395,8 +395,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: tabHeight path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs startLine: 17 @@ -422,8 +422,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: textOffsetY path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs startLine: 18 @@ -449,8 +449,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ActiveElement path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs startLine: 20 @@ -476,8 +476,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Right path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs startLine: 21 @@ -503,8 +503,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToggleTabs path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs startLine: 26 @@ -532,8 +532,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Focusable path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs startLine: 28 @@ -564,8 +564,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs startLine: 39 @@ -614,8 +614,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeTextElements path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs startLine: 53 @@ -647,8 +647,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs startLine: 207 @@ -683,8 +683,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnKeyDown path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs startLine: 243 @@ -719,8 +719,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDownOnElement path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs startLine: 259 @@ -755,8 +755,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs startLine: 290 @@ -790,8 +790,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs startLine: 306 @@ -828,8 +828,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementVerticalTabs.cs startLine: 320 diff --git a/api/Vintagestory.API.Client.GuiJsonDialog.yml b/api/Vintagestory.API.Client.GuiJsonDialog.yml index 98cdffc3..9dd74e9b 100644 --- a/api/Vintagestory.API.Client.GuiJsonDialog.yml +++ b/api/Vintagestory.API.Client.GuiJsonDialog.yml @@ -25,8 +25,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiJsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiJsonDialog path: Client/UI/Dialog/GuiJsonDialog.cs startLine: 12 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiJsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DebugName path: Client/UI/Dialog/GuiJsonDialog.cs startLine: 19 @@ -156,8 +156,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiJsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToggleKeyCombinationCode path: Client/UI/Dialog/GuiJsonDialog.cs startLine: 27 @@ -188,8 +188,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiJsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Dialog/GuiJsonDialog.cs startLine: 37 @@ -226,8 +226,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiJsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Dialog/GuiJsonDialog.cs startLine: 49 @@ -267,8 +267,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiJsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Recompose path: Client/UI/Dialog/GuiJsonDialog.cs startLine: 58 @@ -296,8 +296,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiJsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PrefersUngrabbedMouse path: Client/UI/Dialog/GuiJsonDialog.cs startLine: 63 @@ -331,8 +331,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiJsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeDialog path: Client/UI/Dialog/GuiJsonDialog.cs startLine: 68 @@ -365,8 +365,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiJsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDown path: Client/UI/Dialog/GuiJsonDialog.cs startLine: 305 @@ -398,8 +398,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiJsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseUp path: Client/UI/Dialog/GuiJsonDialog.cs startLine: 319 @@ -431,8 +431,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Dialog/GuiJsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReloadValues path: Client/UI/Dialog/GuiJsonDialog.cs startLine: 328 diff --git a/api/Vintagestory.API.Client.GuiStyle.yml b/api/Vintagestory.API.Client.GuiStyle.yml index 395832bc..0029bf86 100644 --- a/api/Vintagestory.API.Client.GuiStyle.yml +++ b/api/Vintagestory.API.Client.GuiStyle.yml @@ -73,8 +73,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiStyle path: Client/UI/Elements/GuiStyle.cs startLine: 8 @@ -110,8 +110,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ElementToDialogPadding path: Client/UI/Elements/GuiStyle.cs startLine: 15 @@ -139,8 +139,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HalfPadding path: Client/UI/Elements/GuiStyle.cs startLine: 20 @@ -168,8 +168,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DialogToScreenPadding path: Client/UI/Elements/GuiStyle.cs startLine: 25 @@ -197,8 +197,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TitleBarHeight path: Client/UI/Elements/GuiStyle.cs startLine: 30 @@ -226,8 +226,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DialogBGRadius path: Client/UI/Elements/GuiStyle.cs startLine: 35 @@ -255,8 +255,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ElementBGRadius path: Client/UI/Elements/GuiStyle.cs startLine: 40 @@ -284,8 +284,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LargeFontSize path: Client/UI/Elements/GuiStyle.cs startLine: 45 @@ -313,8 +313,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NormalFontSize path: Client/UI/Elements/GuiStyle.cs startLine: 51 @@ -342,8 +342,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SubNormalFontSize path: Client/UI/Elements/GuiStyle.cs startLine: 56 @@ -371,8 +371,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SmallishFontSize path: Client/UI/Elements/GuiStyle.cs startLine: 61 @@ -400,8 +400,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SmallFontSize path: Client/UI/Elements/GuiStyle.cs startLine: 66 @@ -429,8 +429,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DetailFontSize path: Client/UI/Elements/GuiStyle.cs startLine: 72 @@ -458,8 +458,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DecorativeFontName path: Client/UI/Elements/GuiStyle.cs startLine: 77 @@ -487,8 +487,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StandardFontName path: Client/UI/Elements/GuiStyle.cs startLine: 82 @@ -516,8 +516,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LeftDialogMargin path: Client/UI/Elements/GuiStyle.cs startLine: 89 @@ -545,8 +545,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RightDialogMargin path: Client/UI/Elements/GuiStyle.cs startLine: 93 @@ -574,8 +574,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorTime1 path: Client/UI/Elements/GuiStyle.cs startLine: 96 @@ -601,8 +601,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorTime2 path: Client/UI/Elements/GuiStyle.cs startLine: 97 @@ -628,8 +628,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorRust1 path: Client/UI/Elements/GuiStyle.cs startLine: 99 @@ -655,8 +655,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorRust2 path: Client/UI/Elements/GuiStyle.cs startLine: 100 @@ -682,8 +682,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorRust3 path: Client/UI/Elements/GuiStyle.cs startLine: 101 @@ -709,8 +709,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorWood path: Client/UI/Elements/GuiStyle.cs startLine: 103 @@ -736,8 +736,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorParchment path: Client/UI/Elements/GuiStyle.cs startLine: 105 @@ -763,8 +763,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorSchematic path: Client/UI/Elements/GuiStyle.cs startLine: 106 @@ -790,8 +790,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorRot1 path: Client/UI/Elements/GuiStyle.cs startLine: 108 @@ -817,8 +817,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorRot2 path: Client/UI/Elements/GuiStyle.cs startLine: 109 @@ -844,8 +844,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorRot3 path: Client/UI/Elements/GuiStyle.cs startLine: 110 @@ -871,8 +871,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorRot4 path: Client/UI/Elements/GuiStyle.cs startLine: 111 @@ -898,8 +898,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorRot5 path: Client/UI/Elements/GuiStyle.cs startLine: 112 @@ -925,8 +925,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DialogSlotBackColor path: Client/UI/Elements/GuiStyle.cs startLine: 116 @@ -952,8 +952,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DialogSlotFrontColor path: Client/UI/Elements/GuiStyle.cs startLine: 117 @@ -979,8 +979,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DialogLightBgColor path: Client/UI/Elements/GuiStyle.cs startLine: 122 @@ -1008,8 +1008,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DialogDefaultBgColor path: Client/UI/Elements/GuiStyle.cs startLine: 126 @@ -1037,8 +1037,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DialogStrongBgColor path: Client/UI/Elements/GuiStyle.cs startLine: 130 @@ -1066,8 +1066,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DialogBorderColor path: Client/UI/Elements/GuiStyle.cs startLine: 134 @@ -1095,8 +1095,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DialogHighlightColor path: Client/UI/Elements/GuiStyle.cs startLine: 139 @@ -1124,8 +1124,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DialogAlternateBgColor path: Client/UI/Elements/GuiStyle.cs startLine: 143 @@ -1153,8 +1153,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DialogDefaultTextColor path: Client/UI/Elements/GuiStyle.cs startLine: 149 @@ -1182,8 +1182,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DarkBrownColor path: Client/UI/Elements/GuiStyle.cs startLine: 153 @@ -1211,8 +1211,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HotbarNumberTextColor path: Client/UI/Elements/GuiStyle.cs startLine: 157 @@ -1240,8 +1240,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DiscoveryTextColor path: Client/UI/Elements/GuiStyle.cs startLine: 159 @@ -1267,8 +1267,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SuccessTextColor path: Client/UI/Elements/GuiStyle.cs startLine: 162 @@ -1294,8 +1294,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SuccessTextColorHex path: Client/UI/Elements/GuiStyle.cs startLine: 164 @@ -1321,8 +1321,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ErrorTextColorHex path: Client/UI/Elements/GuiStyle.cs startLine: 165 @@ -1348,8 +1348,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ErrorTextColor path: Client/UI/Elements/GuiStyle.cs startLine: 170 @@ -1377,8 +1377,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WarningTextColor path: Client/UI/Elements/GuiStyle.cs startLine: 174 @@ -1406,8 +1406,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LinkTextColor path: Client/UI/Elements/GuiStyle.cs startLine: 178 @@ -1435,8 +1435,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ButtonTextColor path: Client/UI/Elements/GuiStyle.cs startLine: 182 @@ -1464,8 +1464,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ActiveButtonTextColor path: Client/UI/Elements/GuiStyle.cs startLine: 186 @@ -1493,8 +1493,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DisabledTextColor path: Client/UI/Elements/GuiStyle.cs startLine: 190 @@ -1522,8 +1522,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ActiveSlotColor path: Client/UI/Elements/GuiStyle.cs startLine: 196 @@ -1551,8 +1551,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HealthBarColor path: Client/UI/Elements/GuiStyle.cs startLine: 201 @@ -1580,8 +1580,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OxygenBarColor path: Client/UI/Elements/GuiStyle.cs startLine: 206 @@ -1609,8 +1609,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FoodBarColor path: Client/UI/Elements/GuiStyle.cs startLine: 211 @@ -1638,8 +1638,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XPBarColor path: Client/UI/Elements/GuiStyle.cs startLine: 216 @@ -1667,8 +1667,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TitleBarColor path: Client/UI/Elements/GuiStyle.cs startLine: 221 @@ -1696,8 +1696,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MacroIconColor path: Client/UI/Elements/GuiStyle.cs startLine: 226 @@ -1725,8 +1725,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/GuiStyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DamageColorGradient path: Client/UI/Elements/GuiStyle.cs startLine: 232 diff --git a/api/Vintagestory.API.Client.GuiTab.yml b/api/Vintagestory.API.Client.GuiTab.yml index d0897f37..be5b3fa3 100644 --- a/api/Vintagestory.API.Client.GuiTab.yml +++ b/api/Vintagestory.API.Client.GuiTab.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiTab path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs startLine: 6 @@ -54,8 +54,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DataInt path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs startLine: 8 @@ -81,8 +81,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Name path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs startLine: 9 @@ -108,8 +108,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PaddingTop path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs startLine: 10 @@ -135,8 +135,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Active path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementHorizontalTabs.cs startLine: 11 diff --git a/api/Vintagestory.API.Client.HotKey.yml b/api/Vintagestory.API.Client.HotKey.yml index f2e189ad..3e780bab 100644 --- a/api/Vintagestory.API.Client.HotKey.yml +++ b/api/Vintagestory.API.Client.HotKey.yml @@ -28,8 +28,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/HotKey.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HotKey path: Client/Input/HotKey.cs startLine: 5 @@ -63,8 +63,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/HotKey.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsGlobalHotkey path: Client/Input/HotKey.cs startLine: 10 @@ -92,8 +92,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/HotKey.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsIngameHotkey path: Client/Input/HotKey.cs startLine: 15 @@ -121,8 +121,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/HotKey.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentMapping path: Client/Input/HotKey.cs startLine: 20 @@ -150,8 +150,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/HotKey.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DefaultMapping path: Client/Input/HotKey.cs startLine: 25 @@ -179,8 +179,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/HotKey.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Client/Input/HotKey.cs startLine: 30 @@ -208,8 +208,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/HotKey.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Name path: Client/Input/HotKey.cs startLine: 35 @@ -237,8 +237,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/HotKey.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: KeyCombinationType path: Client/Input/HotKey.cs startLine: 40 @@ -266,8 +266,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/HotKey.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Handler path: Client/Input/HotKey.cs startLine: 45 @@ -295,8 +295,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/HotKey.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TriggerOnUpAlso path: Client/Input/HotKey.cs startLine: 50 @@ -324,8 +324,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/HotKey.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DidPress path: Client/Input/HotKey.cs startLine: 60 @@ -371,8 +371,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/HotKey.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FallbackDidPress path: Client/Input/HotKey.cs startLine: 92 @@ -418,8 +418,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/HotKey.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Client/Input/HotKey.cs startLine: 109 @@ -449,8 +449,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/HotKey.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetDefaultMapping path: Client/Input/HotKey.cs startLine: 120 diff --git a/api/Vintagestory.API.Client.HotkeyComponent.yml b/api/Vintagestory.API.Client.HotkeyComponent.yml index 2094f1f4..bad09c56 100644 --- a/api/Vintagestory.API.Client.HotkeyComponent.yml +++ b/api/Vintagestory.API.Client.HotkeyComponent.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/HotkeyComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HotkeyComponent path: Client/UI/Elements/Impl/Interactive/Text/Richtext/HotkeyComponent.cs startLine: 6 @@ -80,8 +80,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/HotkeyComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Text/Richtext/HotkeyComponent.cs startLine: 11 @@ -116,8 +116,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/HotkeyComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Interactive/Text/Richtext/HotkeyComponent.cs startLine: 27 @@ -151,8 +151,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/HotkeyComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GenHotkeyTexture path: Client/UI/Elements/Impl/Interactive/Text/Richtext/HotkeyComponent.cs startLine: 42 @@ -177,8 +177,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/HotkeyComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/Text/Richtext/HotkeyComponent.cs startLine: 89 @@ -222,8 +222,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/HotkeyComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CalcBounds path: Client/UI/Elements/Impl/Interactive/Text/Richtext/HotkeyComponent.cs startLine: 101 @@ -273,8 +273,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/HotkeyComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Interactive/Text/Richtext/HotkeyComponent.cs startLine: 114 @@ -301,8 +301,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/HotkeyComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawHotkey path: Client/UI/Elements/Impl/Interactive/Text/Richtext/HotkeyComponent.cs startLine: 122 diff --git a/api/Vintagestory.API.Client.HotkeyType.yml b/api/Vintagestory.API.Client.HotkeyType.yml index cac55ff9..a155da8d 100644 --- a/api/Vintagestory.API.Client.HotkeyType.yml +++ b/api/Vintagestory.API.Client.HotkeyType.yml @@ -25,8 +25,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumHotkeyType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HotkeyType path: Client/Input/EnumHotkeyType.cs startLine: 2 @@ -50,8 +50,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumHotkeyType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HelpAndOverlays path: Client/Input/EnumHotkeyType.cs startLine: 7 @@ -78,8 +78,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumHotkeyType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MouseModifiers path: Client/Input/EnumHotkeyType.cs startLine: 11 @@ -106,8 +106,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumHotkeyType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GUIOrOtherControls path: Client/Input/EnumHotkeyType.cs startLine: 15 @@ -134,8 +134,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumHotkeyType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MovementControls path: Client/Input/EnumHotkeyType.cs startLine: 19 @@ -162,8 +162,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumHotkeyType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CharacterControls path: Client/Input/EnumHotkeyType.cs startLine: 23 @@ -190,8 +190,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumHotkeyType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InventoryHotkeys path: Client/Input/EnumHotkeyType.cs startLine: 27 @@ -218,8 +218,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumHotkeyType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreativeTool path: Client/Input/EnumHotkeyType.cs startLine: 31 @@ -246,8 +246,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumHotkeyType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreativeOrSpectatorTool path: Client/Input/EnumHotkeyType.cs startLine: 35 @@ -274,8 +274,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumHotkeyType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DevTool path: Client/Input/EnumHotkeyType.cs startLine: 39 @@ -302,8 +302,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumHotkeyType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MouseControls path: Client/Input/EnumHotkeyType.cs startLine: 43 diff --git a/api/Vintagestory.API.Client.HudElement.yml b/api/Vintagestory.API.Client.HudElement.yml index 199f6f27..604b0bff 100644 --- a/api/Vintagestory.API.Client.HudElement.yml +++ b/api/Vintagestory.API.Client.HudElement.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/HudElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HudElement path: Client/UI/HudElement.cs startLine: 5 @@ -113,8 +113,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/HudElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/HudElement.cs startLine: 11 @@ -148,8 +148,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/HudElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DialogType path: Client/UI/HudElement.cs startLine: 15 @@ -180,8 +180,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/HudElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToggleKeyCombinationCode path: Client/UI/HudElement.cs startLine: 17 @@ -212,8 +212,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/HudElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PrefersUngrabbedMouse path: Client/UI/HudElement.cs startLine: 23 @@ -247,8 +247,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/HudElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnRenderGUI path: Client/UI/HudElement.cs startLine: 25 diff --git a/api/Vintagestory.API.Client.IAsyncParticleManager.yml b/api/Vintagestory.API.Client.IAsyncParticleManager.yml index a761a2f4..9a406c74 100644 --- a/api/Vintagestory.API.Client.IAsyncParticleManager.yml +++ b/api/Vintagestory.API.Client.IAsyncParticleManager.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IAsyncParticleManager path: Client/API/IClientEventAPI.cs startLine: 46 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Spawn path: Client/API/IClientEventAPI.cs startLine: 48 @@ -74,8 +74,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockAccess path: Client/API/IClientEventAPI.cs startLine: 49 @@ -103,8 +103,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParticlesAlive path: Client/API/IClientEventAPI.cs startLine: 51 diff --git a/api/Vintagestory.API.Client.IAviWriter.yml b/api/Vintagestory.API.Client.IAviWriter.yml index beb34124..8f61f602 100644 --- a/api/Vintagestory.API.Client.IAviWriter.yml +++ b/api/Vintagestory.API.Client.IAviWriter.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IAviWriter.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IAviWriter path: Client/Render/IAviWriter.cs startLine: 8 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IAviWriter.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Open path: Client/Render/IAviWriter.cs startLine: 10 @@ -79,8 +79,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IAviWriter.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddFrame path: Client/Render/IAviWriter.cs startLine: 11 @@ -105,8 +105,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IAviWriter.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Close path: Client/Render/IAviWriter.cs startLine: 12 diff --git a/api/Vintagestory.API.Client.IBlockTextureAtlasAPI.yml b/api/Vintagestory.API.Client.IBlockTextureAtlasAPI.yml index 9fc5dd75..f0287160 100644 --- a/api/Vintagestory.API.Client.IBlockTextureAtlasAPI.yml +++ b/api/Vintagestory.API.Client.IBlockTextureAtlasAPI.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITextureAtlasAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IBlockTextureAtlasAPI path: Client/API/ITextureAtlasAPI.cs startLine: 28 @@ -67,8 +67,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITextureAtlasAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetPosition path: Client/API/ITextureAtlasAPI.cs startLine: 37 diff --git a/api/Vintagestory.API.Client.IClientEventAPI.yml b/api/Vintagestory.API.Client.IClientEventAPI.yml index 43d2c16f..d1d07b1a 100644 --- a/api/Vintagestory.API.Client.IClientEventAPI.yml +++ b/api/Vintagestory.API.Client.IClientEventAPI.yml @@ -50,8 +50,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IClientEventAPI path: Client/API/IClientEventAPI.cs startLine: 89 @@ -102,8 +102,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChatMessage path: Client/API/IClientEventAPI.cs startLine: 94 @@ -131,8 +131,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnSendChatMessage path: Client/API/IClientEventAPI.cs startLine: 99 @@ -160,8 +160,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerJoin path: Client/API/IClientEventAPI.cs startLine: 104 @@ -189,8 +189,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerLeave path: Client/API/IClientEventAPI.cs startLine: 109 @@ -218,8 +218,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerDeath path: Client/API/IClientEventAPI.cs startLine: 114 @@ -247,8 +247,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsPlayerReady path: Client/API/IClientEventAPI.cs startLine: 119 @@ -276,8 +276,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerEntitySpawn path: Client/API/IClientEventAPI.cs startLine: 124 @@ -305,8 +305,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerEntityDespawn path: Client/API/IClientEventAPI.cs startLine: 129 @@ -334,8 +334,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PauseResume path: Client/API/IClientEventAPI.cs startLine: 135 @@ -363,8 +363,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LeaveWorld path: Client/API/IClientEventAPI.cs startLine: 140 @@ -392,8 +392,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LeftWorld path: Client/API/IClientEventAPI.cs startLine: 145 @@ -421,8 +421,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockChanged path: Client/API/IClientEventAPI.cs startLine: 150 @@ -450,8 +450,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TestBlockAccess path: Client/API/IClientEventAPI.cs startLine: 155 @@ -479,8 +479,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeforeActiveSlotChanged path: Client/API/IClientEventAPI.cs startLine: 162 @@ -513,8 +513,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AfterActiveSlotChanged path: Client/API/IClientEventAPI.cs startLine: 167 @@ -542,8 +542,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InGameError path: Client/API/IClientEventAPI.cs startLine: 172 @@ -571,8 +571,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InGameDiscovery path: Client/API/IClientEventAPI.cs startLine: 177 @@ -600,8 +600,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorsPresetChanged path: Client/API/IClientEventAPI.cs startLine: 182 @@ -629,8 +629,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterRenderer path: Client/API/IClientEventAPI.cs startLine: 190 @@ -670,8 +670,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UnregisterRenderer path: Client/API/IClientEventAPI.cs startLine: 197 @@ -705,8 +705,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterItemstackRenderer path: Client/API/IClientEventAPI.cs startLine: 205 @@ -743,8 +743,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UnregisterItemstackRenderer path: Client/API/IClientEventAPI.cs startLine: 212 @@ -778,8 +778,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterAsyncParticleSpawner path: Client/API/IClientEventAPI.cs startLine: 220 @@ -810,8 +810,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockTexturesLoaded path: Client/API/IClientEventAPI.cs startLine: 226 @@ -839,8 +839,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReloadShader path: Client/API/IClientEventAPI.cs startLine: 231 @@ -868,8 +868,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReloadTextures path: Client/API/IClientEventAPI.cs startLine: 236 @@ -897,8 +897,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LevelFinalize path: Client/API/IClientEventAPI.cs startLine: 241 @@ -926,8 +926,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReloadShapes path: Client/API/IClientEventAPI.cs startLine: 246 @@ -955,8 +955,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HotkeysChanged path: Client/API/IClientEventAPI.cs startLine: 251 @@ -984,8 +984,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MouseDown path: Client/API/IClientEventAPI.cs startLine: 258 @@ -1013,8 +1013,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MouseUp path: Client/API/IClientEventAPI.cs startLine: 262 @@ -1042,8 +1042,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MouseMove path: Client/API/IClientEventAPI.cs startLine: 266 @@ -1071,8 +1071,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: KeyDown path: Client/API/IClientEventAPI.cs startLine: 270 @@ -1100,8 +1100,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: KeyUp path: Client/API/IClientEventAPI.cs startLine: 274 @@ -1129,8 +1129,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FileDrop path: Client/API/IClientEventAPI.cs startLine: 279 diff --git a/api/Vintagestory.API.Client.IClientNetworkAPI.yml b/api/Vintagestory.API.Client.IClientNetworkAPI.yml index 69c26260..cd924d51 100644 --- a/api/Vintagestory.API.Client.IClientNetworkAPI.yml +++ b/api/Vintagestory.API.Client.IClientNetworkAPI.yml @@ -28,8 +28,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientNetworkAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IClientNetworkAPI path: Client/API/IClientNetworkAPI.cs startLine: 53 @@ -55,8 +55,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientNetworkAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterChannel path: Client/API/IClientNetworkAPI.cs startLine: 60 @@ -93,8 +93,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientNetworkAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetChannel path: Client/API/IClientNetworkAPI.cs startLine: 67 @@ -131,8 +131,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientNetworkAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetChannelState path: Client/API/IClientNetworkAPI.cs startLine: 74 @@ -169,8 +169,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientNetworkAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SendBlockEntityPacket path: Client/API/IClientNetworkAPI.cs startLine: 84 @@ -216,8 +216,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientNetworkAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SendBlockEntityPacket path: Client/API/IClientNetworkAPI.cs startLine: 92 @@ -257,8 +257,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientNetworkAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SendEntityPacket path: Client/API/IClientNetworkAPI.cs startLine: 100 @@ -298,8 +298,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientNetworkAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SendBlockEntityPacket path: Client/API/IClientNetworkAPI.cs startLine: 110 @@ -342,8 +342,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientNetworkAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SendEntityPacket path: Client/API/IClientNetworkAPI.cs startLine: 118 @@ -380,8 +380,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientNetworkAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SendArbitraryPacket path: Client/API/IClientNetworkAPI.cs startLine: 125 @@ -415,8 +415,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientNetworkAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SendPacketClient path: Client/API/IClientNetworkAPI.cs startLine: 132 @@ -450,8 +450,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientNetworkAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SendHandInteraction path: Client/API/IClientNetworkAPI.cs startLine: 144 @@ -503,8 +503,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientNetworkAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SendPlayerNowReady path: Client/API/IClientNetworkAPI.cs startLine: 150 @@ -531,8 +531,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientNetworkAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SendBlockEntityPacket path: Client/API/IClientNetworkAPI.cs startLine: 161 diff --git a/api/Vintagestory.API.Client.IClientNetworkChannel.yml b/api/Vintagestory.API.Client.IClientNetworkChannel.yml index 63ac8d7c..a7f55cfa 100644 --- a/api/Vintagestory.API.Client.IClientNetworkChannel.yml +++ b/api/Vintagestory.API.Client.IClientNetworkChannel.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientNetworkChannel.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IClientNetworkChannel path: Client/API/IClientNetworkChannel.cs startLine: 37 @@ -49,8 +49,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientNetworkChannel.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Connected path: Client/API/IClientNetworkChannel.cs startLine: 42 @@ -80,8 +80,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientNetworkChannel.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterMessageType path: Client/API/IClientNetworkChannel.cs startLine: 48 @@ -114,8 +114,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientNetworkChannel.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterMessageType path: Client/API/IClientNetworkChannel.cs startLine: 55 @@ -151,8 +151,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientNetworkChannel.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetMessageHandler path: Client/API/IClientNetworkChannel.cs startLine: 62 @@ -191,8 +191,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientNetworkChannel.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SendPacket path: Client/API/IClientNetworkChannel.cs startLine: 68 diff --git a/api/Vintagestory.API.Client.IClientPlayer.yml b/api/Vintagestory.API.Client.IClientPlayer.yml index d5bb5b42..94a04f1d 100644 --- a/api/Vintagestory.API.Client.IClientPlayer.yml +++ b/api/Vintagestory.API.Client.IClientPlayer.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IClientPlayer path: Client/API/IClientPlayer.cs startLine: 7 @@ -65,8 +65,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CameraPitch path: Client/API/IClientPlayer.cs startLine: 13 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CameraRoll path: Client/API/IClientPlayer.cs startLine: 15 @@ -125,8 +125,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CameraYaw path: Client/API/IClientPlayer.cs startLine: 17 @@ -154,8 +154,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CameraMode path: Client/API/IClientPlayer.cs startLine: 24 @@ -185,8 +185,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShowChatNotification path: Client/API/IClientPlayer.cs startLine: 30 @@ -220,8 +220,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TriggerFpAnimation path: Client/API/IClientPlayer.cs startLine: 36 diff --git a/api/Vintagestory.API.Client.IClientWorldAccessor.yml b/api/Vintagestory.API.Client.IClientWorldAccessor.yml index 111bbfda..cfe8c5a2 100644 --- a/api/Vintagestory.API.Client.IClientWorldAccessor.yml +++ b/api/Vintagestory.API.Client.IClientWorldAccessor.yml @@ -36,8 +36,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IClientWorldAccessor path: Client/API/IClientWorldAccessor.cs startLine: 70 @@ -148,8 +148,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetColorMapData path: Client/API/IClientWorldAccessor.cs startLine: 73 @@ -188,8 +188,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Calendar path: Client/API/IClientWorldAccessor.cs startLine: 78 @@ -219,8 +219,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ApplyColorMapOnRgba path: Client/API/IClientWorldAccessor.cs startLine: 91 @@ -275,8 +275,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ApplyColorMapOnRgba path: Client/API/IClientWorldAccessor.cs startLine: 92 @@ -321,8 +321,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ApplyColorMapOnRgba path: Client/API/IClientWorldAccessor.cs startLine: 105 @@ -374,8 +374,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ForceLiquidSelectable path: Client/API/IClientWorldAccessor.cs startLine: 111 @@ -405,8 +405,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AmbientParticles path: Client/API/IClientWorldAccessor.cs startLine: 116 @@ -436,8 +436,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Player path: Client/API/IClientWorldAccessor.cs startLine: 123 @@ -467,8 +467,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadSound path: Client/API/IClientWorldAccessor.cs startLine: 130 @@ -502,8 +502,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddCameraShake path: Client/API/IClientWorldAccessor.cs startLine: 136 @@ -537,8 +537,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetCameraShake path: Client/API/IClientWorldAccessor.cs startLine: 138 @@ -569,8 +569,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReduceCameraShake path: Client/API/IClientWorldAccessor.cs startLine: 140 @@ -601,8 +601,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IncurBlockDamage path: Client/API/IClientWorldAccessor.cs startLine: 148 @@ -642,8 +642,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CloneBlockDamage path: Client/API/IClientWorldAccessor.cs startLine: 155 @@ -677,8 +677,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryAttackEntity path: Client/API/IClientWorldAccessor.cs startLine: 161 @@ -709,8 +709,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadedEntities path: Client/API/IClientWorldAccessor.cs startLine: 166 @@ -740,8 +740,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dimensions path: Client/API/IClientWorldAccessor.cs startLine: 168 @@ -769,8 +769,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetOrCreateDimension path: Client/API/IClientWorldAccessor.cs startLine: 169 @@ -805,8 +805,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryGetMiniDimension path: Client/API/IClientWorldAccessor.cs startLine: 170 @@ -841,8 +841,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetBlocksPreviewDimension path: Client/API/IClientWorldAccessor.cs startLine: 171 @@ -873,8 +873,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlaySoundAtAndGetDuration path: Client/API/IClientWorldAccessor.cs startLine: 176 diff --git a/api/Vintagestory.API.Client.IColorPresets.yml b/api/Vintagestory.API.Client.IColorPresets.yml index d09fd863..0242284e 100644 --- a/api/Vintagestory.API.Client.IColorPresets.yml +++ b/api/Vintagestory.API.Client.IColorPresets.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IColorPresets.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IColorPresets path: Client/API/IColorPresets.cs startLine: 6 @@ -48,8 +48,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IColorPresets.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Initialize path: Client/API/IColorPresets.cs startLine: 12 @@ -80,8 +80,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IColorPresets.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnUpdateSetting path: Client/API/IColorPresets.cs startLine: 17 @@ -108,8 +108,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IColorPresets.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetColor path: Client/API/IColorPresets.cs startLine: 22 diff --git a/api/Vintagestory.API.Client.ICoreClientAPI.yml b/api/Vintagestory.API.Client.ICoreClientAPI.yml index 8b863793..9a5a7ebf 100644 --- a/api/Vintagestory.API.Client.ICoreClientAPI.yml +++ b/api/Vintagestory.API.Client.ICoreClientAPI.yml @@ -56,8 +56,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ICoreClientAPI path: Client/API/ICoreClientAPI.cs startLine: 9 @@ -113,8 +113,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LinkProtocols path: Client/API/ICoreClientAPI.cs startLine: 14 @@ -144,8 +144,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TagConverters path: Client/API/ICoreClientAPI.cs startLine: 19 @@ -175,8 +175,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Settings path: Client/API/ICoreClientAPI.cs startLine: 24 @@ -206,8 +206,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Forms path: Client/API/ICoreClientAPI.cs startLine: 29 @@ -237,8 +237,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MacroManager path: Client/API/ICoreClientAPI.cs startLine: 34 @@ -268,8 +268,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ElapsedMilliseconds path: Client/API/ICoreClientAPI.cs startLine: 39 @@ -299,8 +299,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InWorldEllapsedMilliseconds path: Client/API/ICoreClientAPI.cs startLine: 44 @@ -330,8 +330,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsShuttingDown path: Client/API/ICoreClientAPI.cs startLine: 49 @@ -361,8 +361,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsGamePaused path: Client/API/ICoreClientAPI.cs startLine: 54 @@ -392,8 +392,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsSinglePlayer path: Client/API/ICoreClientAPI.cs startLine: 59 @@ -423,8 +423,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OpenedToLan path: Client/API/ICoreClientAPI.cs startLine: 61 @@ -452,8 +452,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HideGuis path: Client/API/ICoreClientAPI.cs startLine: 66 @@ -483,8 +483,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerReadyFired path: Client/API/ICoreClientAPI.cs startLine: 71 @@ -514,8 +514,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Ambient path: Client/API/ICoreClientAPI.cs startLine: 78 @@ -545,8 +545,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Event path: Client/API/ICoreClientAPI.cs startLine: 83 @@ -576,8 +576,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Render path: Client/API/ICoreClientAPI.cs startLine: 88 @@ -607,8 +607,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Gui path: Client/API/ICoreClientAPI.cs startLine: 93 @@ -638,8 +638,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Input path: Client/API/ICoreClientAPI.cs startLine: 98 @@ -669,8 +669,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TesselatorManager path: Client/API/ICoreClientAPI.cs startLine: 103 @@ -700,8 +700,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Tesselator path: Client/API/ICoreClientAPI.cs startLine: 108 @@ -731,8 +731,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockTextureAtlas path: Client/API/ICoreClientAPI.cs startLine: 114 @@ -762,8 +762,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ItemTextureAtlas path: Client/API/ICoreClientAPI.cs startLine: 119 @@ -793,8 +793,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityTextureAtlas path: Client/API/ICoreClientAPI.cs startLine: 124 @@ -824,8 +824,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorPreset path: Client/API/ICoreClientAPI.cs startLine: 129 @@ -855,8 +855,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Shader path: Client/API/ICoreClientAPI.cs startLine: 134 @@ -886,8 +886,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Network path: Client/API/ICoreClientAPI.cs startLine: 139 @@ -917,8 +917,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: World path: Client/API/ICoreClientAPI.cs startLine: 144 @@ -948,8 +948,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OpenedGuis path: Client/API/ICoreClientAPI.cs startLine: 149 @@ -979,8 +979,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterCommand path: Client/API/ICoreClientAPI.cs startLine: 157 @@ -1026,8 +1026,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterCommand path: Client/API/ICoreClientAPI.cs startLine: 168 @@ -1085,8 +1085,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterEntityRendererClass path: Client/API/ICoreClientAPI.cs startLine: 177 @@ -1123,8 +1123,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterLinkProtocol path: Client/API/ICoreClientAPI.cs startLine: 184 @@ -1161,8 +1161,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShowChatMessage path: Client/API/ICoreClientAPI.cs startLine: 190 @@ -1196,8 +1196,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TriggerIngameDiscovery path: Client/API/ICoreClientAPI.cs startLine: 198 @@ -1237,8 +1237,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TriggerIngameError path: Client/API/ICoreClientAPI.cs startLine: 206 @@ -1278,8 +1278,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TriggerChatMessage path: Client/API/ICoreClientAPI.cs startLine: 213 @@ -1313,8 +1313,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SendChatMessage path: Client/API/ICoreClientAPI.cs startLine: 221 @@ -1354,8 +1354,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SendChatMessage path: Client/API/ICoreClientAPI.cs startLine: 228 @@ -1392,8 +1392,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartTrack path: Client/API/ICoreClientAPI.cs startLine: 240 @@ -1442,8 +1442,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentMusicTrack path: Client/API/ICoreClientAPI.cs startLine: 246 @@ -1473,8 +1473,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ICoreClientAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PauseGame path: Client/API/ICoreClientAPI.cs startLine: 248 diff --git a/api/Vintagestory.API.Client.IGuiAPI.yml b/api/Vintagestory.API.Client.IGuiAPI.yml index 7fcf5299..2922a33c 100644 --- a/api/Vintagestory.API.Client.IGuiAPI.yml +++ b/api/Vintagestory.API.Client.IGuiAPI.yml @@ -40,8 +40,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IGuiAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IGuiAPI path: Client/API/IGuiAPI.cs startLine: 7 @@ -65,8 +65,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IGuiAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: QuadMeshRef path: Client/API/IGuiAPI.cs startLine: 12 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IGuiAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadedGuis path: Client/API/IGuiAPI.cs startLine: 17 @@ -127,8 +127,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IGuiAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OpenedGuis path: Client/API/IGuiAPI.cs startLine: 22 @@ -158,8 +158,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IGuiAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TextTexture path: Client/API/IGuiAPI.cs startLine: 28 @@ -189,8 +189,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IGuiAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Text path: Client/API/IGuiAPI.cs startLine: 33 @@ -220,8 +220,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IGuiAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Icons path: Client/API/IGuiAPI.cs startLine: 38 @@ -251,8 +251,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IGuiAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WindowBounds path: Client/API/IGuiAPI.cs startLine: 44 @@ -282,8 +282,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IGuiAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDialogBoundsInArea path: Client/API/IGuiAPI.cs startLine: 52 @@ -317,8 +317,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IGuiAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateCompo path: Client/API/IGuiAPI.cs startLine: 60 @@ -358,8 +358,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IGuiAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterDialog path: Client/API/IGuiAPI.cs startLine: 68 @@ -396,8 +396,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IGuiAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DeleteTexture path: Client/API/IGuiAPI.cs startLine: 75 @@ -431,8 +431,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IGuiAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadSvg path: Client/API/IGuiAPI.cs startLine: 88 @@ -484,8 +484,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IGuiAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawSvg path: Client/API/IGuiAPI.cs startLine: 91 @@ -528,8 +528,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IGuiAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawSvg path: Client/API/IGuiAPI.cs startLine: 92 @@ -574,8 +574,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IGuiAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadSvgWithPadding path: Client/API/IGuiAPI.cs startLine: 103 @@ -624,8 +624,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IGuiAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadCairoTexture path: Client/API/IGuiAPI.cs startLine: 111 @@ -665,8 +665,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IGuiAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadOrUpdateCairoTexture path: Client/API/IGuiAPI.cs startLine: 120 @@ -706,8 +706,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IGuiAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDialogPosition path: Client/API/IGuiAPI.cs startLine: 128 @@ -744,8 +744,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IGuiAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetDialogPosition path: Client/API/IGuiAPI.cs startLine: 135 @@ -782,8 +782,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IGuiAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlaySound path: Client/API/IGuiAPI.cs startLine: 143 @@ -823,8 +823,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IGuiAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlaySound path: Client/API/IGuiAPI.cs startLine: 151 @@ -864,8 +864,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IGuiAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RequestFocus path: Client/API/IGuiAPI.cs startLine: 157 @@ -896,8 +896,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IGuiAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TriggerDialogOpened path: Client/API/IGuiAPI.cs startLine: 163 @@ -928,8 +928,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IGuiAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TriggerDialogClosed path: Client/API/IGuiAPI.cs startLine: 169 @@ -960,8 +960,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IGuiAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OpenLink path: Client/API/IGuiAPI.cs startLine: 175 diff --git a/api/Vintagestory.API.Client.IGuiComposerManager.yml b/api/Vintagestory.API.Client.IGuiComposerManager.yml index 317447bc..fec5d1d9 100644 --- a/api/Vintagestory.API.Client.IGuiComposerManager.yml +++ b/api/Vintagestory.API.Client.IGuiComposerManager.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IGuiComposerManager path: Client/UI/GuiComposer.cs startLine: 10 @@ -42,8 +42,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UnfocusElements path: Client/UI/GuiComposer.cs startLine: 12 @@ -68,8 +68,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/GuiComposer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Composers path: Client/UI/GuiComposer.cs startLine: 14 diff --git a/api/Vintagestory.API.Client.IGuiElementCell.yml b/api/Vintagestory.API.Client.IGuiElementCell.yml index a4309b76..891e69dd 100644 --- a/api/Vintagestory.API.Client.IGuiElementCell.yml +++ b/api/Vintagestory.API.Client.IGuiElementCell.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IGuiElementCell path: Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs startLine: 8 @@ -50,8 +50,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InsideClipBounds path: Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs startLine: 10 @@ -79,8 +79,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Bounds path: Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs startLine: 15 @@ -110,8 +110,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnRenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs startLine: 22 @@ -148,8 +148,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UpdateCellHeight path: Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs startLine: 27 @@ -176,8 +176,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseUpOnElement path: Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs startLine: 29 @@ -210,8 +210,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDownOnElement path: Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs startLine: 31 @@ -244,8 +244,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseMoveOnElement path: Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs startLine: 33 @@ -278,8 +278,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MouseOverCursor path: Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs startLine: 35 diff --git a/api/Vintagestory.API.Client.IInputAPI.yml b/api/Vintagestory.API.Client.IInputAPI.yml index 6aaedf21..3ddce0ca 100644 --- a/api/Vintagestory.API.Client.IInputAPI.yml +++ b/api/Vintagestory.API.Client.IInputAPI.yml @@ -36,8 +36,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IInputAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IInputAPI path: Client/API/IInputAPI.cs startLine: 24 @@ -63,8 +63,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IInputAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClipboardText path: Client/API/IInputAPI.cs startLine: 29 @@ -94,8 +94,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IInputAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InWorldAction path: Client/API/IInputAPI.cs startLine: 34 @@ -123,8 +123,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IInputAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: KeyboardKeyStateRaw path: Client/API/IInputAPI.cs startLine: 39 @@ -154,8 +154,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IInputAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: KeyboardKeyState path: Client/API/IInputAPI.cs startLine: 44 @@ -185,8 +185,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IInputAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MouseButton path: Client/API/IInputAPI.cs startLine: 49 @@ -216,8 +216,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IInputAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InWorldMouseButton path: Client/API/IInputAPI.cs startLine: 54 @@ -247,8 +247,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IInputAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MouseX path: Client/API/IInputAPI.cs startLine: 59 @@ -278,8 +278,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IInputAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MouseY path: Client/API/IInputAPI.cs startLine: 64 @@ -309,8 +309,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IInputAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MouseYaw path: Client/API/IInputAPI.cs startLine: 69 @@ -340,8 +340,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IInputAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MousePitch path: Client/API/IInputAPI.cs startLine: 73 @@ -371,8 +371,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IInputAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TriggerOnMouseEnterSlot path: Client/API/IInputAPI.cs startLine: 81 @@ -404,8 +404,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IInputAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TriggerOnMouseLeaveSlot path: Client/API/IInputAPI.cs startLine: 88 @@ -437,8 +437,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IInputAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TriggerOnMouseClickSlot path: Client/API/IInputAPI.cs startLine: 95 @@ -470,8 +470,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IInputAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MouseWorldInteractAnyway path: Client/API/IInputAPI.cs startLine: 102 @@ -501,8 +501,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IInputAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MouseGrabbed path: Client/API/IInputAPI.cs startLine: 108 @@ -535,8 +535,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IInputAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterHotKey path: Client/API/IInputAPI.cs startLine: 120 @@ -588,8 +588,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IInputAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterHotKeyFirst path: Client/API/IInputAPI.cs startLine: 131 @@ -641,8 +641,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IInputAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetHotKeyHandler path: Client/API/IInputAPI.cs startLine: 139 @@ -679,8 +679,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IInputAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddHotkeyListener path: Client/API/IInputAPI.cs startLine: 141 @@ -708,8 +708,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IInputAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HotKeys path: Client/API/IInputAPI.cs startLine: 146 @@ -739,8 +739,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IInputAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHotKeyByCode path: Client/API/IInputAPI.cs startLine: 153 diff --git a/api/Vintagestory.API.Client.IItemTextureAtlasAPI.yml b/api/Vintagestory.API.Client.IItemTextureAtlasAPI.yml index fc0e3eb2..c631effc 100644 --- a/api/Vintagestory.API.Client.IItemTextureAtlasAPI.yml +++ b/api/Vintagestory.API.Client.IItemTextureAtlasAPI.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITextureAtlasAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IItemTextureAtlasAPI path: Client/API/ITextureAtlasAPI.cs startLine: 12 @@ -67,8 +67,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITextureAtlasAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetPosition path: Client/API/ITextureAtlasAPI.cs startLine: 21 diff --git a/api/Vintagestory.API.Client.ILoadedSound.yml b/api/Vintagestory.API.Client.ILoadedSound.yml index f6db5e36..45b7db88 100644 --- a/api/Vintagestory.API.Client.ILoadedSound.yml +++ b/api/Vintagestory.API.Client.ILoadedSound.yml @@ -39,8 +39,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/ILoadedSound.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ILoadedSound path: Client/Audio/ILoadedSound.cs startLine: 8 @@ -68,8 +68,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/ILoadedSound.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SoundLengthSeconds path: Client/Audio/ILoadedSound.cs startLine: 13 @@ -99,8 +99,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/ILoadedSound.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlaybackPosition path: Client/Audio/ILoadedSound.cs startLine: 18 @@ -130,8 +130,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/ILoadedSound.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsDisposed path: Client/Audio/ILoadedSound.cs startLine: 23 @@ -161,8 +161,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/ILoadedSound.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsPlaying path: Client/Audio/ILoadedSound.cs startLine: 28 @@ -192,8 +192,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/ILoadedSound.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsFadingIn path: Client/Audio/ILoadedSound.cs startLine: 33 @@ -223,8 +223,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/ILoadedSound.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsFadingOut path: Client/Audio/ILoadedSound.cs startLine: 38 @@ -254,8 +254,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/ILoadedSound.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HasStopped path: Client/Audio/ILoadedSound.cs startLine: 43 @@ -285,8 +285,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/ILoadedSound.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Channels path: Client/Audio/ILoadedSound.cs startLine: 48 @@ -316,8 +316,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/ILoadedSound.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Params path: Client/Audio/ILoadedSound.cs startLine: 53 @@ -347,8 +347,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/ILoadedSound.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Start path: Client/Audio/ILoadedSound.cs startLine: 58 @@ -375,8 +375,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/ILoadedSound.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Stop path: Client/Audio/ILoadedSound.cs startLine: 63 @@ -403,8 +403,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/ILoadedSound.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pause path: Client/Audio/ILoadedSound.cs startLine: 68 @@ -431,8 +431,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/ILoadedSound.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Toggle path: Client/Audio/ILoadedSound.cs startLine: 74 @@ -466,8 +466,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/ILoadedSound.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetPitch path: Client/Audio/ILoadedSound.cs startLine: 81 @@ -501,8 +501,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/ILoadedSound.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetPitchOffset path: Client/Audio/ILoadedSound.cs startLine: 87 @@ -536,8 +536,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/ILoadedSound.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetVolume path: Client/Audio/ILoadedSound.cs startLine: 93 @@ -571,8 +571,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/ILoadedSound.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetVolume path: Client/Audio/ILoadedSound.cs startLine: 98 @@ -599,8 +599,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/ILoadedSound.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetPosition path: Client/Audio/ILoadedSound.cs startLine: 104 @@ -631,8 +631,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/ILoadedSound.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetPosition path: Client/Audio/ILoadedSound.cs startLine: 105 @@ -667,8 +667,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/ILoadedSound.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetLooping path: Client/Audio/ILoadedSound.cs startLine: 107 @@ -699,8 +699,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/ILoadedSound.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FadeTo path: Client/Audio/ILoadedSound.cs startLine: 115 @@ -740,8 +740,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/ILoadedSound.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FadeOut path: Client/Audio/ILoadedSound.cs startLine: 122 @@ -778,8 +778,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/ILoadedSound.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FadeIn path: Client/Audio/ILoadedSound.cs startLine: 129 @@ -816,8 +816,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/ILoadedSound.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FadeOutAndStop path: Client/Audio/ILoadedSound.cs startLine: 136 diff --git a/api/Vintagestory.API.Client.IMacroBase.yml b/api/Vintagestory.API.Client.IMacroBase.yml index 6eb9cd3a..ab93d317 100644 --- a/api/Vintagestory.API.Client.IMacroBase.yml +++ b/api/Vintagestory.API.Client.IMacroBase.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IMacroManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IMacroBase path: Client/API/IMacroManager.cs startLine: 14 @@ -47,8 +47,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IMacroManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Index path: Client/API/IMacroManager.cs startLine: 16 @@ -76,8 +76,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IMacroManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Client/API/IMacroManager.cs startLine: 17 @@ -105,8 +105,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IMacroManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Name path: Client/API/IMacroManager.cs startLine: 18 @@ -134,8 +134,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IMacroManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Commands path: Client/API/IMacroManager.cs startLine: 19 @@ -163,8 +163,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IMacroManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: KeyCombination path: Client/API/IMacroManager.cs startLine: 20 @@ -192,8 +192,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IMacroManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: iconTexture path: Client/API/IMacroManager.cs startLine: 21 @@ -221,8 +221,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IMacroManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GenTexture path: Client/API/IMacroManager.cs startLine: 22 diff --git a/api/Vintagestory.API.Client.IMacroManager.yml b/api/Vintagestory.API.Client.IMacroManager.yml index 6c365f04..9e6aa1f3 100644 --- a/api/Vintagestory.API.Client.IMacroManager.yml +++ b/api/Vintagestory.API.Client.IMacroManager.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IMacroManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IMacroManager path: Client/API/IMacroManager.cs startLine: 4 @@ -46,8 +46,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IMacroManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DeleteMacro path: Client/API/IMacroManager.cs startLine: 6 @@ -78,8 +78,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IMacroManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadMacros path: Client/API/IMacroManager.cs startLine: 7 @@ -104,8 +104,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IMacroManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RunMacro path: Client/API/IMacroManager.cs startLine: 8 @@ -140,8 +140,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IMacroManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SaveMacro path: Client/API/IMacroManager.cs startLine: 9 @@ -174,8 +174,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IMacroManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetMacro path: Client/API/IMacroManager.cs startLine: 10 @@ -208,8 +208,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IMacroManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MacrosByIndex path: Client/API/IMacroManager.cs startLine: 11 diff --git a/api/Vintagestory.API.Client.IMeshPoolSupplier.yml b/api/Vintagestory.API.Client.IMeshPoolSupplier.yml index 59256bfa..bb7ad49c 100644 --- a/api/Vintagestory.API.Client.IMeshPoolSupplier.yml +++ b/api/Vintagestory.API.Client.IMeshPoolSupplier.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/IMeshPoolSupplier.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IMeshPoolSupplier path: Client/Model/Mesh/IMeshPoolSupplier.cs startLine: 2 @@ -41,8 +41,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/IMeshPoolSupplier.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMeshPoolForPass path: Client/Model/Mesh/IMeshPoolSupplier.cs startLine: 11 diff --git a/api/Vintagestory.API.Client.IMusicEngine.yml b/api/Vintagestory.API.Client.IMusicEngine.yml index 05b28294..073f0216 100644 --- a/api/Vintagestory.API.Client.IMusicEngine.yml +++ b/api/Vintagestory.API.Client.IMusicEngine.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/IMusicEngine.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IMusicEngine path: Client/Audio/IMusicEngine.cs startLine: 5 @@ -45,8 +45,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/IMusicEngine.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadTrack path: Client/Audio/IMusicEngine.cs startLine: 14 @@ -89,8 +89,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/IMusicEngine.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentTrack path: Client/Audio/IMusicEngine.cs startLine: 19 @@ -120,8 +120,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/IMusicEngine.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LastPlayedTrack path: Client/Audio/IMusicEngine.cs startLine: 24 @@ -151,8 +151,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/IMusicEngine.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MillisecondsSinceLastTrack path: Client/Audio/IMusicEngine.cs startLine: 29 @@ -182,8 +182,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/IMusicEngine.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StopTrack path: Client/Audio/IMusicEngine.cs startLine: 31 diff --git a/api/Vintagestory.API.Client.IMusicTrack.yml b/api/Vintagestory.API.Client.IMusicTrack.yml index 911fe7cb..bd14962e 100644 --- a/api/Vintagestory.API.Client.IMusicTrack.yml +++ b/api/Vintagestory.API.Client.IMusicTrack.yml @@ -28,8 +28,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/IMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IMusicTrack path: Client/Audio/IMusicTrack.cs startLine: 7 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/IMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Name path: Client/Audio/IMusicTrack.cs startLine: 12 @@ -84,8 +84,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/IMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsActive path: Client/Audio/IMusicTrack.cs startLine: 17 @@ -115,8 +115,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/IMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Priority path: Client/Audio/IMusicTrack.cs startLine: 22 @@ -146,8 +146,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/IMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartPriority path: Client/Audio/IMusicTrack.cs startLine: 27 @@ -177,8 +177,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/IMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeginSort path: Client/Audio/IMusicTrack.cs startLine: 32 @@ -205,8 +205,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/IMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Initialize path: Client/Audio/IMusicTrack.cs startLine: 40 @@ -243,8 +243,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/IMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldPlay path: Client/Audio/IMusicTrack.cs startLine: 49 @@ -284,8 +284,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/IMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeginPlay path: Client/Audio/IMusicTrack.cs startLine: 55 @@ -316,8 +316,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/IMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ContinuePlay path: Client/Audio/IMusicTrack.cs startLine: 63 @@ -357,8 +357,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/IMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UpdateVolume path: Client/Audio/IMusicTrack.cs startLine: 68 @@ -385,8 +385,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/IMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FadeOut path: Client/Audio/IMusicTrack.cs startLine: 76 @@ -426,8 +426,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/IMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FastForward path: Client/Audio/IMusicTrack.cs startLine: 77 @@ -458,8 +458,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/IMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PositionString path: Client/Audio/IMusicTrack.cs startLine: 78 diff --git a/api/Vintagestory.API.Client.INetworkChannel.yml b/api/Vintagestory.API.Client.INetworkChannel.yml index 7beb56ae..6e33cc7a 100644 --- a/api/Vintagestory.API.Client.INetworkChannel.yml +++ b/api/Vintagestory.API.Client.INetworkChannel.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientNetworkChannel.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: INetworkChannel path: Client/API/IClientNetworkChannel.cs startLine: 4 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientNetworkChannel.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChannelName path: Client/API/IClientNetworkChannel.cs startLine: 9 @@ -74,8 +74,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientNetworkChannel.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterMessageType path: Client/API/IClientNetworkChannel.cs startLine: 15 @@ -108,8 +108,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientNetworkChannel.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterMessageType path: Client/API/IClientNetworkChannel.cs startLine: 22 diff --git a/api/Vintagestory.API.Client.IPointLight.yml b/api/Vintagestory.API.Client.IPointLight.yml index 299cf4e6..0372e70c 100644 --- a/api/Vintagestory.API.Client.IPointLight.yml +++ b/api/Vintagestory.API.Client.IPointLight.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IPointLight path: Client/API/IRenderAPI.cs startLine: 792 @@ -42,8 +42,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Color path: Client/API/IRenderAPI.cs startLine: 794 @@ -71,8 +71,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pos path: Client/API/IRenderAPI.cs startLine: 795 diff --git a/api/Vintagestory.API.Client.IRenderAPI.yml b/api/Vintagestory.API.Client.IRenderAPI.yml index ab6ae013..35dc5b8a 100644 --- a/api/Vintagestory.API.Client.IRenderAPI.yml +++ b/api/Vintagestory.API.Client.IRenderAPI.yml @@ -115,8 +115,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IRenderAPI path: Client/API/IRenderAPI.cs startLine: 12 @@ -142,8 +142,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PerceptionEffects path: Client/API/IRenderAPI.cs startLine: 14 @@ -171,8 +171,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ScissorStack path: Client/API/IRenderAPI.cs startLine: 16 @@ -200,8 +200,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TextureSize path: Client/API/IRenderAPI.cs startLine: 17 @@ -229,8 +229,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DefaultFrustumCuller path: Client/API/IRenderAPI.cs startLine: 19 @@ -258,8 +258,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FrameBuffers path: Client/API/IRenderAPI.cs startLine: 24 @@ -289,8 +289,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShaderUniforms path: Client/API/IRenderAPI.cs startLine: 29 @@ -320,8 +320,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CameraOffset path: Client/API/IRenderAPI.cs startLine: 34 @@ -351,8 +351,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentRenderStage path: Client/API/IRenderAPI.cs startLine: 39 @@ -382,8 +382,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PerspectiveViewMat path: Client/API/IRenderAPI.cs startLine: 44 @@ -413,8 +413,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PerspectiveProjectionMat path: Client/API/IRenderAPI.cs startLine: 49 @@ -444,8 +444,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DecorativeFontName path: Client/API/IRenderAPI.cs startLine: 54 @@ -487,8 +487,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StandardFontName path: Client/API/IRenderAPI.cs startLine: 60 @@ -530,8 +530,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FrameWidth path: Client/API/IRenderAPI.cs startLine: 66 @@ -561,8 +561,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FrameHeight path: Client/API/IRenderAPI.cs startLine: 71 @@ -592,8 +592,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CameraType path: Client/API/IRenderAPI.cs startLine: 76 @@ -623,8 +623,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MvMatrix path: Client/API/IRenderAPI.cs startLine: 81 @@ -654,8 +654,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PMatrix path: Client/API/IRenderAPI.cs startLine: 86 @@ -685,8 +685,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetItemStackRenderInfo path: Client/API/IRenderAPI.cs startLine: 95 @@ -729,8 +729,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Reset3DProjection path: Client/API/IRenderAPI.cs startLine: 100 @@ -755,8 +755,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set3DProjection path: Client/API/IRenderAPI.cs startLine: 101 @@ -789,8 +789,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GlGetError path: Client/API/IRenderAPI.cs startLine: 107 @@ -820,8 +820,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CheckGlError path: Client/API/IRenderAPI.cs startLine: 114 @@ -858,8 +858,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GlMatrixModeModelView path: Client/API/IRenderAPI.cs startLine: 119 @@ -886,8 +886,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GlPushMatrix path: Client/API/IRenderAPI.cs startLine: 125 @@ -914,8 +914,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GlPopMatrix path: Client/API/IRenderAPI.cs startLine: 131 @@ -942,8 +942,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GlLoadMatrix path: Client/API/IRenderAPI.cs startLine: 138 @@ -977,8 +977,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GlTranslate path: Client/API/IRenderAPI.cs startLine: 147 @@ -1018,8 +1018,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GlTranslate path: Client/API/IRenderAPI.cs startLine: 156 @@ -1059,8 +1059,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GlScale path: Client/API/IRenderAPI.cs startLine: 165 @@ -1100,8 +1100,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GlRotate path: Client/API/IRenderAPI.cs startLine: 175 @@ -1144,8 +1144,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GlEnableCullFace path: Client/API/IRenderAPI.cs startLine: 180 @@ -1172,8 +1172,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GlDisableCullFace path: Client/API/IRenderAPI.cs startLine: 185 @@ -1200,8 +1200,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GLEnableDepthTest path: Client/API/IRenderAPI.cs startLine: 190 @@ -1228,8 +1228,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GLDisableDepthTest path: Client/API/IRenderAPI.cs startLine: 195 @@ -1256,8 +1256,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GlViewport path: Client/API/IRenderAPI.cs startLine: 197 @@ -1294,8 +1294,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LineWidth path: Client/API/IRenderAPI.cs startLine: 199 @@ -1323,8 +1323,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GLDepthMask path: Client/API/IRenderAPI.cs startLine: 205 @@ -1358,8 +1358,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GlGenerateTex2DMipmaps path: Client/API/IRenderAPI.cs startLine: 210 @@ -1386,8 +1386,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GlToggleBlend path: Client/API/IRenderAPI.cs startLine: 217 @@ -1424,8 +1424,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentModelviewMatrix path: Client/API/IRenderAPI.cs startLine: 223 @@ -1455,8 +1455,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CameraMatrixOrigin path: Client/API/IRenderAPI.cs startLine: 232 @@ -1489,8 +1489,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CameraMatrixOriginf path: Client/API/IRenderAPI.cs startLine: 238 @@ -1523,8 +1523,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentProjectionMatrix path: Client/API/IRenderAPI.cs startLine: 244 @@ -1554,8 +1554,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentShadowProjectionMatrix path: Client/API/IRenderAPI.cs startLine: 252 @@ -1585,8 +1585,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PushScissor path: Client/API/IRenderAPI.cs startLine: 262 @@ -1623,8 +1623,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PopScissor path: Client/API/IRenderAPI.cs startLine: 267 @@ -1651,8 +1651,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GlScissor path: Client/API/IRenderAPI.cs startLine: 276 @@ -1695,8 +1695,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GlScissorFlag path: Client/API/IRenderAPI.cs startLine: 282 @@ -1730,8 +1730,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BitmapCreateFromPng path: Client/API/IRenderAPI.cs startLine: 294 @@ -1768,8 +1768,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadTextureFromBgra path: Client/API/IRenderAPI.cs startLine: 305 @@ -1830,8 +1830,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadTextureFromRgba path: Client/API/IRenderAPI.cs startLine: 317 @@ -1892,8 +1892,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadOrUpdateTextureFromBgra path: Client/API/IRenderAPI.cs startLine: 329 @@ -1936,8 +1936,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadOrUpdateTextureFromRgba path: Client/API/IRenderAPI.cs startLine: 339 @@ -1980,8 +1980,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadTexture path: Client/API/IRenderAPI.cs startLine: 341 @@ -2020,8 +2020,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GLDeleteTexture path: Client/API/IRenderAPI.cs startLine: 348 @@ -2055,8 +2055,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GlGetMaxTextureSize path: Client/API/IRenderAPI.cs startLine: 355 @@ -2086,8 +2086,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BindTexture2d path: Client/API/IRenderAPI.cs startLine: 361 @@ -2121,8 +2121,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetOrLoadTexture path: Client/API/IRenderAPI.cs startLine: 368 @@ -2156,8 +2156,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetOrLoadTexture path: Client/API/IRenderAPI.cs startLine: 376 @@ -2194,8 +2194,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetOrLoadTexture path: Client/API/IRenderAPI.cs startLine: 385 @@ -2235,8 +2235,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveTexture path: Client/API/IRenderAPI.cs startLine: 392 @@ -2270,8 +2270,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetUniformLocation path: Client/API/IRenderAPI.cs startLine: 405 @@ -2311,8 +2311,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetEngineShader path: Client/API/IRenderAPI.cs startLine: 412 @@ -2346,8 +2346,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetShader path: Client/API/IRenderAPI.cs startLine: 419 @@ -2384,8 +2384,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StandardShader path: Client/API/IRenderAPI.cs startLine: 424 @@ -2415,8 +2415,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreparedStandardShader path: Client/API/IRenderAPI.cs startLine: 434 @@ -2462,8 +2462,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentActiveShader path: Client/API/IRenderAPI.cs startLine: 439 @@ -2493,8 +2493,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AllocateEmptyMesh path: Client/API/IRenderAPI.cs startLine: 461 @@ -2564,8 +2564,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UploadMesh path: Client/API/IRenderAPI.cs startLine: 471 @@ -2606,8 +2606,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UploadMultiTextureMesh path: Client/API/IRenderAPI.cs startLine: 478 @@ -2641,8 +2641,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UpdateMesh path: Client/API/IRenderAPI.cs startLine: 485 @@ -2676,8 +2676,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DeleteMesh path: Client/API/IRenderAPI.cs startLine: 491 @@ -2708,8 +2708,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderMesh path: Client/API/IRenderAPI.cs startLine: 505 @@ -2740,8 +2740,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderMultiTextureMesh path: Client/API/IRenderAPI.cs startLine: 513 @@ -2781,8 +2781,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderMultiTextureMesh path: Client/API/IRenderAPI.cs startLine: 519 @@ -2813,8 +2813,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderMeshInstanced path: Client/API/IRenderAPI.cs startLine: 527 @@ -2851,8 +2851,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderMesh path: Client/API/IRenderAPI.cs startLine: 536 @@ -2895,8 +2895,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderTextureIntoTexture path: Client/API/IRenderAPI.cs startLine: 550 @@ -2954,8 +2954,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderItemstackToGui path: Client/API/IRenderAPI.cs startLine: 564 @@ -3025,8 +3025,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderItemstackToGui path: Client/API/IRenderAPI.cs startLine: 579 @@ -3084,8 +3084,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderItemstackToGui path: Client/API/IRenderAPI.cs startLine: 594 @@ -3146,8 +3146,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderItemStackToAtlas path: Client/API/IRenderAPI.cs startLine: 607 @@ -3202,8 +3202,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetTextureAtlasPosition path: Client/API/IRenderAPI.cs startLine: 612 @@ -3235,8 +3235,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderEntityToGui path: Client/API/IRenderAPI.cs startLine: 625 @@ -3291,8 +3291,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Render2DTexturePremultipliedAlpha path: Client/API/IRenderAPI.cs startLine: 640 @@ -3344,8 +3344,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Render2DTexturePremultipliedAlpha path: Client/API/IRenderAPI.cs startLine: 652 @@ -3397,8 +3397,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Render2DTexturePremultipliedAlpha path: Client/API/IRenderAPI.cs startLine: 661 @@ -3441,8 +3441,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderTexture path: Client/API/IRenderAPI.cs startLine: 673 @@ -3494,8 +3494,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Render2DTexture path: Client/API/IRenderAPI.cs startLine: 685 @@ -3547,8 +3547,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Render2DTexture path: Client/API/IRenderAPI.cs startLine: 698 @@ -3600,8 +3600,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Render2DTexture path: Client/API/IRenderAPI.cs startLine: 708 @@ -3644,8 +3644,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Render2DLoadedTexture path: Client/API/IRenderAPI.cs startLine: 717 @@ -3688,8 +3688,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderRectangle path: Client/API/IRenderAPI.cs startLine: 728 @@ -3738,8 +3738,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderLine path: Client/API/IRenderAPI.cs startLine: 742 @@ -3794,8 +3794,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AmbientColor path: Client/API/IRenderAPI.cs startLine: 751 @@ -3825,8 +3825,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FogColor path: Client/API/IRenderAPI.cs startLine: 756 @@ -3856,8 +3856,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FogMin path: Client/API/IRenderAPI.cs startLine: 761 @@ -3887,8 +3887,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FogDensity path: Client/API/IRenderAPI.cs startLine: 766 @@ -3918,8 +3918,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddPointLight path: Client/API/IRenderAPI.cs startLine: 778 @@ -3950,8 +3950,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemovePointLight path: Client/API/IRenderAPI.cs startLine: 784 diff --git a/api/Vintagestory.API.Client.IRenderer.yml b/api/Vintagestory.API.Client.IRenderer.yml index 4239d65e..85c8cea7 100644 --- a/api/Vintagestory.API.Client.IRenderer.yml +++ b/api/Vintagestory.API.Client.IRenderer.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IRenderer path: Client/API/IRenderer.cs startLine: 8 @@ -47,8 +47,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderOrder path: Client/API/IRenderer.cs startLine: 74 @@ -201,8 +201,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderRange path: Client/API/IRenderer.cs startLine: 79 @@ -232,8 +232,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnRenderFrame path: Client/API/IRenderer.cs startLine: 86 diff --git a/api/Vintagestory.API.Client.ISettings.yml b/api/Vintagestory.API.Client.ISettings.yml index 0cf4db97..74cc00d5 100644 --- a/api/Vintagestory.API.Client.ISettings.yml +++ b/api/Vintagestory.API.Client.ISettings.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ISettings.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ISettings path: Client/API/ISettings.cs startLine: 53 @@ -48,8 +48,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ISettings.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Bool path: Client/API/ISettings.cs startLine: 58 @@ -79,8 +79,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ISettings.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Int path: Client/API/ISettings.cs startLine: 63 @@ -110,8 +110,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ISettings.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Float path: Client/API/ISettings.cs startLine: 68 @@ -141,8 +141,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ISettings.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: String path: Client/API/ISettings.cs startLine: 73 @@ -172,8 +172,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ISettings.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Strings path: Client/API/ISettings.cs startLine: 78 @@ -203,8 +203,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ISettings.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddWatcher path: Client/API/ISettings.cs startLine: 86 diff --git a/api/Vintagestory.API.Client.ISettingsClass-1.yml b/api/Vintagestory.API.Client.ISettingsClass-1.yml index b9a4c42f..9bddd373 100644 --- a/api/Vintagestory.API.Client.ISettingsClass-1.yml +++ b/api/Vintagestory.API.Client.ISettingsClass-1.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ISettings.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ISettingsClass path: Client/API/ISettings.cs startLine: 10 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ISettings.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Client/API/ISettings.cs startLine: 17 @@ -91,8 +91,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ISettings.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Get path: Client/API/ISettings.cs startLine: 25 @@ -132,8 +132,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ISettings.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Exists path: Client/API/ISettings.cs startLine: 32 @@ -170,8 +170,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ISettings.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddWatcher path: Client/API/ISettings.cs startLine: 39 @@ -208,8 +208,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ISettings.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveWatcher path: Client/API/ISettings.cs startLine: 47 diff --git a/api/Vintagestory.API.Client.IShader.yml b/api/Vintagestory.API.Client.IShader.yml index 2cb9a6b8..e0536257 100644 --- a/api/Vintagestory.API.Client.IShader.yml +++ b/api/Vintagestory.API.Client.IShader.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IShader path: Client/Render/IShaderProgram.cs startLine: 17 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Type path: Client/Render/IShaderProgram.cs startLine: 19 @@ -72,8 +72,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PrefixCode path: Client/Render/IShaderProgram.cs startLine: 24 @@ -103,8 +103,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Client/Render/IShaderProgram.cs startLine: 29 diff --git a/api/Vintagestory.API.Client.IShaderAPI.yml b/api/Vintagestory.API.Client.IShaderAPI.yml index 557c9ac5..85ecb74e 100644 --- a/api/Vintagestory.API.Client.IShaderAPI.yml +++ b/api/Vintagestory.API.Client.IShaderAPI.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IShaderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IShaderAPI path: Client/API/IShaderAPI.cs startLine: 5 @@ -50,8 +50,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IShaderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NewShaderProgram path: Client/API/IShaderAPI.cs startLine: 11 @@ -81,8 +81,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IShaderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NewShader path: Client/API/IShaderAPI.cs startLine: 17 @@ -115,8 +115,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IShaderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterFileShaderProgram path: Client/API/IShaderAPI.cs startLine: 26 @@ -159,8 +159,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IShaderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterMemoryShaderProgram path: Client/API/IShaderAPI.cs startLine: 35 @@ -203,8 +203,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IShaderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetProgram path: Client/API/IShaderAPI.cs startLine: 42 @@ -241,8 +241,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IShaderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetProgramByName path: Client/API/IShaderAPI.cs startLine: 49 @@ -279,8 +279,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IShaderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReloadShaders path: Client/API/IShaderAPI.cs startLine: 55 @@ -310,8 +310,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IShaderAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsGLSLVersionSupported path: Client/API/IShaderAPI.cs startLine: 62 diff --git a/api/Vintagestory.API.Client.IShaderProgram.yml b/api/Vintagestory.API.Client.IShaderProgram.yml index 035014fa..5f39759a 100644 --- a/api/Vintagestory.API.Client.IShaderProgram.yml +++ b/api/Vintagestory.API.Client.IShaderProgram.yml @@ -38,8 +38,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IShaderProgram path: Client/Render/IShaderProgram.cs startLine: 32 @@ -65,8 +65,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PassId path: Client/Render/IShaderProgram.cs startLine: 37 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PassName path: Client/Render/IShaderProgram.cs startLine: 42 @@ -127,8 +127,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClampTexturesToEdge path: Client/Render/IShaderProgram.cs startLine: 47 @@ -158,8 +158,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VertexShader path: Client/Render/IShaderProgram.cs startLine: 52 @@ -189,8 +189,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FragmentShader path: Client/Render/IShaderProgram.cs startLine: 57 @@ -220,8 +220,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GeometryShader path: Client/Render/IShaderProgram.cs startLine: 62 @@ -251,8 +251,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Use path: Client/Render/IShaderProgram.cs startLine: 65 @@ -277,8 +277,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Stop path: Client/Render/IShaderProgram.cs startLine: 66 @@ -303,8 +303,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Compile path: Client/Render/IShaderProgram.cs startLine: 67 @@ -331,8 +331,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Uniform path: Client/Render/IShaderProgram.cs startLine: 69 @@ -365,8 +365,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Uniform path: Client/Render/IShaderProgram.cs startLine: 71 @@ -399,8 +399,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Uniform path: Client/Render/IShaderProgram.cs startLine: 73 @@ -433,8 +433,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Uniform path: Client/Render/IShaderProgram.cs startLine: 75 @@ -467,8 +467,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Uniform path: Client/Render/IShaderProgram.cs startLine: 77 @@ -501,8 +501,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Uniforms4 path: Client/Render/IShaderProgram.cs startLine: 79 @@ -537,8 +537,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UniformMatrix path: Client/Render/IShaderProgram.cs startLine: 81 @@ -571,8 +571,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BindTexture2D path: Client/Render/IShaderProgram.cs startLine: 83 @@ -607,8 +607,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BindTextureCube path: Client/Render/IShaderProgram.cs startLine: 85 @@ -643,8 +643,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UniformMatrices path: Client/Render/IShaderProgram.cs startLine: 87 @@ -679,8 +679,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UniformMatrices4x3 path: Client/Render/IShaderProgram.cs startLine: 89 @@ -715,8 +715,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HasUniform path: Client/Render/IShaderProgram.cs startLine: 91 @@ -749,8 +749,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Disposed path: Client/Render/IShaderProgram.cs startLine: 97 @@ -780,8 +780,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadError path: Client/Render/IShaderProgram.cs startLine: 98 diff --git a/api/Vintagestory.API.Client.IStandardShaderProgram.yml b/api/Vintagestory.API.Client.IStandardShaderProgram.yml index 3f4dba40..4225cccd 100644 --- a/api/Vintagestory.API.Client.IStandardShaderProgram.yml +++ b/api/Vintagestory.API.Client.IStandardShaderProgram.yml @@ -47,8 +47,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IStandardShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IStandardShaderProgram path: Client/Render/IStandardShaderProgram.cs startLine: 4 @@ -97,8 +97,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IStandardShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Tex2D path: Client/Render/IStandardShaderProgram.cs startLine: 9 @@ -128,8 +128,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IStandardShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShadowMapNear2D path: Client/Render/IStandardShaderProgram.cs startLine: 14 @@ -159,8 +159,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IStandardShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShadowMapFar2D path: Client/Render/IStandardShaderProgram.cs startLine: 19 @@ -190,8 +190,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IStandardShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NormalShaded path: Client/Render/IStandardShaderProgram.cs startLine: 21 @@ -219,8 +219,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IStandardShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ZNear path: Client/Render/IStandardShaderProgram.cs startLine: 26 @@ -250,8 +250,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IStandardShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ZFar path: Client/Render/IStandardShaderProgram.cs startLine: 31 @@ -281,8 +281,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IStandardShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AlphaTest path: Client/Render/IStandardShaderProgram.cs startLine: 36 @@ -312,8 +312,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IStandardShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DamageEffect path: Client/Render/IStandardShaderProgram.cs startLine: 38 @@ -341,8 +341,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IStandardShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExtraZOffset path: Client/Render/IStandardShaderProgram.cs startLine: 40 @@ -370,8 +370,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IStandardShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExtraGodray path: Client/Render/IStandardShaderProgram.cs startLine: 42 @@ -399,8 +399,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IStandardShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RgbaAmbientIn path: Client/Render/IStandardShaderProgram.cs startLine: 47 @@ -430,8 +430,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IStandardShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RgbaLightIn path: Client/Render/IStandardShaderProgram.cs startLine: 52 @@ -461,8 +461,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IStandardShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RgbaGlowIn path: Client/Render/IStandardShaderProgram.cs startLine: 57 @@ -492,8 +492,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IStandardShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RgbaFogIn path: Client/Render/IStandardShaderProgram.cs startLine: 62 @@ -523,8 +523,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IStandardShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RgbaTint path: Client/Render/IStandardShaderProgram.cs startLine: 67 @@ -554,8 +554,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IStandardShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FogMinIn path: Client/Render/IStandardShaderProgram.cs startLine: 72 @@ -585,8 +585,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IStandardShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FogDensityIn path: Client/Render/IStandardShaderProgram.cs startLine: 77 @@ -616,8 +616,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IStandardShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ProjectionMatrix path: Client/Render/IStandardShaderProgram.cs startLine: 82 @@ -647,8 +647,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IStandardShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ModelMatrix path: Client/Render/IStandardShaderProgram.cs startLine: 87 @@ -678,8 +678,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IStandardShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ViewMatrix path: Client/Render/IStandardShaderProgram.cs startLine: 92 @@ -709,8 +709,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IStandardShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExtraGlow path: Client/Render/IStandardShaderProgram.cs startLine: 94 @@ -738,8 +738,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IStandardShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToShadowMapSpaceMatrixFar path: Client/Render/IStandardShaderProgram.cs startLine: 99 @@ -769,8 +769,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IStandardShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToShadowMapSpaceMatrixNear path: Client/Render/IStandardShaderProgram.cs startLine: 104 @@ -800,8 +800,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IStandardShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WaterWaveCounter path: Client/Render/IStandardShaderProgram.cs startLine: 109 @@ -831,8 +831,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IStandardShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DontWarpVertices path: Client/Render/IStandardShaderProgram.cs startLine: 117 @@ -862,8 +862,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IStandardShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddRenderFlags path: Client/Render/IStandardShaderProgram.cs startLine: 119 @@ -891,8 +891,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IStandardShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Tex2dOverlay2D path: Client/Render/IStandardShaderProgram.cs startLine: 122 @@ -920,8 +920,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IStandardShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OverlayOpacity path: Client/Render/IStandardShaderProgram.cs startLine: 123 @@ -949,8 +949,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IStandardShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SsaoAttn path: Client/Render/IStandardShaderProgram.cs startLine: 125 @@ -978,8 +978,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IStandardShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OverlayTextureSize path: Client/Render/IStandardShaderProgram.cs startLine: 127 @@ -1007,8 +1007,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IStandardShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BaseTextureSize path: Client/Render/IStandardShaderProgram.cs startLine: 128 @@ -1036,8 +1036,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/IStandardShaderProgram.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BaseUvOrigin path: Client/Render/IStandardShaderProgram.cs startLine: 129 diff --git a/api/Vintagestory.API.Client.ITerrainMeshPool.yml b/api/Vintagestory.API.Client.ITerrainMeshPool.yml index 721a637a..7deaea61 100644 --- a/api/Vintagestory.API.Client.ITerrainMeshPool.yml +++ b/api/Vintagestory.API.Client.ITerrainMeshPool.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/ITerrainMeshPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ITerrainMeshPool path: Client/Render/ITerrainMeshPool.cs startLine: 2 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/ITerrainMeshPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddMeshData path: Client/Render/ITerrainMeshPool.cs startLine: 9 @@ -81,8 +81,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/ITerrainMeshPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddMeshData path: Client/Render/ITerrainMeshPool.cs startLine: 17 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/ITerrainMeshPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddMeshData path: Client/Render/ITerrainMeshPool.cs startLine: 25 diff --git a/api/Vintagestory.API.Client.ITesselatorAPI.yml b/api/Vintagestory.API.Client.ITesselatorAPI.yml index 93e59cac..1b148ee0 100644 --- a/api/Vintagestory.API.Client.ITesselatorAPI.yml +++ b/api/Vintagestory.API.Client.ITesselatorAPI.yml @@ -30,8 +30,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ITesselatorAPI path: Client/API/ITesselatorAPI.cs startLine: 100 @@ -86,8 +86,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TesselateBlock path: Client/API/ITesselatorAPI.cs startLine: 107 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TesselateItem path: Client/API/ITesselatorAPI.cs startLine: 114 @@ -162,8 +162,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TesselateItem path: Client/API/ITesselatorAPI.cs startLine: 122 @@ -203,8 +203,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TesselateItem path: Client/API/ITesselatorAPI.cs startLine: 131 @@ -244,8 +244,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TesselateShape path: Client/API/ITesselatorAPI.cs startLine: 146 @@ -306,8 +306,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TesselateShape path: Client/API/ITesselatorAPI.cs startLine: 157 @@ -356,8 +356,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TesselateShape path: Client/API/ITesselatorAPI.cs startLine: 172 @@ -418,8 +418,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TesselateShapeWithJointIds path: Client/API/ITesselatorAPI.cs startLine: 188 @@ -471,8 +471,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TesselateShape path: Client/API/ITesselatorAPI.cs startLine: 196 @@ -512,8 +512,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VoxelizeTexture path: Client/API/ITesselatorAPI.cs startLine: 206 @@ -553,8 +553,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VoxelizeTexture path: Client/API/ITesselatorAPI.cs startLine: 218 @@ -603,8 +603,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetTextureSource path: Client/API/ITesselatorAPI.cs startLine: 228 @@ -647,8 +647,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetTexSource path: Client/API/ITesselatorAPI.cs startLine: 230 @@ -697,8 +697,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetTextureSource path: Client/API/ITesselatorAPI.cs startLine: 239 @@ -738,8 +738,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetTextureSource path: Client/API/ITesselatorAPI.cs startLine: 249 diff --git a/api/Vintagestory.API.Client.ITesselatorManager.yml b/api/Vintagestory.API.Client.ITesselatorManager.yml index 0c6eb59e..3a434a54 100644 --- a/api/Vintagestory.API.Client.ITesselatorManager.yml +++ b/api/Vintagestory.API.Client.ITesselatorManager.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ITesselatorManager path: Client/API/ITesselatorAPI.cs startLine: 54 @@ -47,8 +47,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDefaultBlockMesh path: Client/API/ITesselatorAPI.cs startLine: 61 @@ -82,8 +82,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDefaultBlockMeshRef path: Client/API/ITesselatorAPI.cs startLine: 68 @@ -117,8 +117,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDefaultItemMeshRef path: Client/API/ITesselatorAPI.cs startLine: 75 @@ -152,8 +152,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCachedShape path: Client/API/ITesselatorAPI.cs startLine: 77 @@ -183,8 +183,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ThreadDispose path: Client/API/ITesselatorAPI.cs startLine: 78 diff --git a/api/Vintagestory.API.Client.ITexPositionSource.yml b/api/Vintagestory.API.Client.ITexPositionSource.yml index 3a5bf193..f5d88bf4 100644 --- a/api/Vintagestory.API.Client.ITexPositionSource.yml +++ b/api/Vintagestory.API.Client.ITexPositionSource.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/ITextureSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ITexPositionSource path: Client/Texture/ITextureSource.cs startLine: 9 @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/ITextureSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Client/Texture/ITextureSource.cs startLine: 11 @@ -78,8 +78,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/ITextureSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AtlasSize path: Client/Texture/ITextureSource.cs startLine: 16 diff --git a/api/Vintagestory.API.Client.ITextureAtlasAPI.yml b/api/Vintagestory.API.Client.ITextureAtlasAPI.yml index d2673ccb..b8e8435f 100644 --- a/api/Vintagestory.API.Client.ITextureAtlasAPI.yml +++ b/api/Vintagestory.API.Client.ITextureAtlasAPI.yml @@ -38,8 +38,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITextureAtlasAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ITextureAtlasAPI path: Client/API/ITextureAtlasAPI.cs startLine: 48 @@ -65,8 +65,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITextureAtlasAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Client/API/ITextureAtlasAPI.cs startLine: 50 @@ -99,8 +99,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITextureAtlasAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UnknownTexturePosition path: Client/API/ITextureAtlasAPI.cs startLine: 55 @@ -130,8 +130,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITextureAtlasAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Size path: Client/API/ITextureAtlasAPI.cs startLine: 60 @@ -161,8 +161,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITextureAtlasAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SubPixelPaddingX path: Client/API/ITextureAtlasAPI.cs startLine: 65 @@ -192,8 +192,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITextureAtlasAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SubPixelPaddingY path: Client/API/ITextureAtlasAPI.cs startLine: 66 @@ -221,8 +221,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITextureAtlasAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Positions path: Client/API/ITextureAtlasAPI.cs startLine: 71 @@ -252,8 +252,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITextureAtlasAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AtlasTextures path: Client/API/ITextureAtlasAPI.cs startLine: 76 @@ -283,8 +283,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITextureAtlasAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AllocateTextureSpace path: Client/API/ITextureAtlasAPI.cs startLine: 87 @@ -333,8 +333,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITextureAtlasAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InsertTexture path: Client/API/ITextureAtlasAPI.cs startLine: 98 @@ -383,8 +383,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITextureAtlasAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InsertTexture path: Client/API/ITextureAtlasAPI.cs startLine: 109 @@ -433,8 +433,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITextureAtlasAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadCompositeBitmap path: Client/API/ITextureAtlasAPI.cs startLine: 117 @@ -468,8 +468,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITextureAtlasAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetOrInsertTexture path: Client/API/ITextureAtlasAPI.cs startLine: 129 @@ -521,8 +521,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITextureAtlasAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InsertTextureCached path: Client/API/ITextureAtlasAPI.cs startLine: 141 @@ -586,8 +586,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITextureAtlasAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InsertTextureCached path: Client/API/ITextureAtlasAPI.cs startLine: 154 @@ -639,8 +639,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITextureAtlasAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InsertTextureCached path: Client/API/ITextureAtlasAPI.cs startLine: 157 @@ -691,8 +691,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITextureAtlasAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FreeTextureSpace path: Client/API/ITextureAtlasAPI.cs startLine: 165 @@ -726,8 +726,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITextureAtlasAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRandomColor path: Client/API/ITextureAtlasAPI.cs startLine: 172 @@ -764,8 +764,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITextureAtlasAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegenMipMaps path: Client/API/ITextureAtlasAPI.cs startLine: 178 @@ -799,8 +799,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITextureAtlasAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRandomColor path: Client/API/ITextureAtlasAPI.cs startLine: 186 @@ -840,8 +840,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITextureAtlasAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRandomColor path: Client/API/ITextureAtlasAPI.cs startLine: 194 @@ -881,8 +881,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITextureAtlasAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRandomColors path: Client/API/ITextureAtlasAPI.cs startLine: 201 @@ -916,8 +916,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITextureAtlasAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAverageColor path: Client/API/ITextureAtlasAPI.cs startLine: 208 @@ -954,8 +954,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITextureAtlasAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderTextureIntoAtlas path: Client/API/ITextureAtlasAPI.cs startLine: 222 diff --git a/api/Vintagestory.API.Client.IconComponent.yml b/api/Vintagestory.API.Client.IconComponent.yml index c2c630d4..118efc4d 100644 --- a/api/Vintagestory.API.Client.IconComponent.yml +++ b/api/Vintagestory.API.Client.IconComponent.yml @@ -27,8 +27,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/IconComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IconComponent path: Client/UI/Elements/Impl/Interactive/Text/Richtext/IconComponent.cs startLine: 9 @@ -79,8 +79,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/IconComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: capi path: Client/UI/Elements/Impl/Interactive/Text/Richtext/IconComponent.cs startLine: 11 @@ -106,8 +106,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/IconComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: parentBounds path: Client/UI/Elements/Impl/Interactive/Text/Richtext/IconComponent.cs startLine: 13 @@ -133,8 +133,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/IconComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: offY path: Client/UI/Elements/Impl/Interactive/Text/Richtext/IconComponent.cs startLine: 15 @@ -160,8 +160,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/IconComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: sizeMulSvg path: Client/UI/Elements/Impl/Interactive/Text/Richtext/IconComponent.cs startLine: 16 @@ -187,8 +187,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/IconComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: iconName path: Client/UI/Elements/Impl/Interactive/Text/Richtext/IconComponent.cs startLine: 18 @@ -214,8 +214,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/IconComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: iconPath path: Client/UI/Elements/Impl/Interactive/Text/Richtext/IconComponent.cs startLine: 19 @@ -241,8 +241,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/IconComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: font path: Client/UI/Elements/Impl/Interactive/Text/Richtext/IconComponent.cs startLine: 20 @@ -268,8 +268,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/IconComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Text/Richtext/IconComponent.cs startLine: 22 @@ -306,8 +306,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/IconComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Interactive/Text/Richtext/IconComponent.cs startLine: 36 @@ -342,8 +342,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/IconComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CalcBounds path: Client/UI/Elements/Impl/Interactive/Text/Richtext/IconComponent.cs startLine: 52 @@ -393,8 +393,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/IconComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/Text/Richtext/IconComponent.cs startLine: 66 @@ -438,8 +438,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/IconComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Interactive/Text/Richtext/IconComponent.cs startLine: 76 diff --git a/api/Vintagestory.API.Client.IconRendererDelegate.yml b/api/Vintagestory.API.Client.IconRendererDelegate.yml index 1d7c4a9d..9db56f6c 100644 --- a/api/Vintagestory.API.Client.IconRendererDelegate.yml +++ b/api/Vintagestory.API.Client.IconRendererDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IconRendererDelegate path: Client/UI/IconUtil.cs startLine: 10 diff --git a/api/Vintagestory.API.Client.IconUtil.yml b/api/Vintagestory.API.Client.IconUtil.yml index 163538fc..368d426f 100644 --- a/api/Vintagestory.API.Client.IconUtil.yml +++ b/api/Vintagestory.API.Client.IconUtil.yml @@ -89,8 +89,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IconUtil path: Client/UI/IconUtil.cs startLine: 12 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CustomIcons path: Client/UI/IconUtil.cs startLine: 16 @@ -151,8 +151,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SvgIconSource path: Client/UI/IconUtil.cs startLine: 18 @@ -182,8 +182,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SvgIconSource path: Client/UI/IconUtil.cs startLine: 23 @@ -213,8 +213,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/IconUtil.cs startLine: 35 @@ -248,8 +248,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GenTexture path: Client/UI/IconUtil.cs startLine: 42 @@ -288,8 +288,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GenTexture path: Client/UI/IconUtil.cs startLine: 71 @@ -332,8 +332,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawIcon path: Client/UI/IconUtil.cs startLine: 101 @@ -385,8 +385,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawIconInt path: Client/UI/IconUtil.cs startLine: 116 @@ -438,8 +438,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawRightMouseButton path: Client/UI/IconUtil.cs startLine: 354 @@ -480,8 +480,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawLeftMouseButton path: Client/UI/IconUtil.cs startLine: 508 @@ -522,8 +522,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawapple_svg path: Client/UI/IconUtil.cs startLine: 664 @@ -564,8 +564,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawhealth_svg path: Client/UI/IconUtil.cs startLine: 793 @@ -606,8 +606,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawoffhand_svg path: Client/UI/IconUtil.cs startLine: 840 @@ -648,8 +648,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawmask_svg path: Client/UI/IconUtil.cs startLine: 1138 @@ -690,8 +690,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawbracers_svg path: Client/UI/IconUtil.cs startLine: 1788 @@ -732,8 +732,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawpullover_svg path: Client/UI/IconUtil.cs startLine: 2883 @@ -774,8 +774,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawhandheld_svg path: Client/UI/IconUtil.cs startLine: 3474 @@ -816,8 +816,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawdice_svg path: Client/UI/IconUtil.cs startLine: 4746 @@ -858,8 +858,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawright_svg path: Client/UI/IconUtil.cs startLine: 4912 @@ -900,8 +900,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawleft_svg path: Client/UI/IconUtil.cs startLine: 4950 @@ -942,8 +942,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawnecklace_svg path: Client/UI/IconUtil.cs startLine: 4988 @@ -984,8 +984,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawbasket_svg path: Client/UI/IconUtil.cs startLine: 5178 @@ -1026,8 +1026,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawbelt_svg path: Client/UI/IconUtil.cs startLine: 5919 @@ -1068,8 +1068,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawmedal_svg path: Client/UI/IconUtil.cs startLine: 6969 @@ -1110,8 +1110,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawring_svg path: Client/UI/IconUtil.cs startLine: 8310 @@ -1152,8 +1152,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawcape_svg path: Client/UI/IconUtil.cs startLine: 8956 @@ -1194,8 +1194,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawshirt_svg path: Client/UI/IconUtil.cs startLine: 9883 @@ -1236,8 +1236,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawboots_svg path: Client/UI/IconUtil.cs startLine: 12474 @@ -1278,8 +1278,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawhat_svg path: Client/UI/IconUtil.cs startLine: 13275 @@ -1320,8 +1320,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawgloves_svg path: Client/UI/IconUtil.cs startLine: 13842 @@ -1362,8 +1362,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawtrousers_svg path: Client/UI/IconUtil.cs startLine: 14161 @@ -1404,8 +1404,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawArrowRight path: Client/UI/IconUtil.cs startLine: 15386 @@ -1442,8 +1442,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawFlame path: Client/UI/IconUtil.cs startLine: 15418 @@ -1480,8 +1480,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawConnectionQuality path: Client/UI/IconUtil.cs startLine: 15519 @@ -1527,8 +1527,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawmenuicon_svg path: Client/UI/IconUtil.cs startLine: 15560 @@ -1569,8 +1569,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawMapMarker path: Client/UI/IconUtil.cs startLine: 15622 @@ -1611,8 +1611,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawMapPlayer path: Client/UI/IconUtil.cs startLine: 15661 @@ -1655,8 +1655,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawPlus path: Client/UI/IconUtil.cs startLine: 15802 @@ -1699,8 +1699,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawCross path: Client/UI/IconUtil.cs startLine: 15821 @@ -1741,8 +1741,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawPen path: Client/UI/IconUtil.cs startLine: 15844 @@ -1781,8 +1781,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawRandomSymbol path: Client/UI/IconUtil.cs startLine: 15865 @@ -1827,8 +1827,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawVSGear path: Client/UI/IconUtil.cs startLine: 15918 @@ -1871,8 +1871,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawWaypointPlayer path: Client/UI/IconUtil.cs startLine: 17210 @@ -1913,8 +1913,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawWaypointCircle path: Client/UI/IconUtil.cs startLine: 17351 @@ -1955,8 +1955,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawWaypointPick path: Client/UI/IconUtil.cs startLine: 17362 @@ -1997,8 +1997,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawWaypointLadder path: Client/UI/IconUtil.cs startLine: 17544 @@ -2039,8 +2039,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawWaypointHome path: Client/UI/IconUtil.cs startLine: 17824 @@ -2081,8 +2081,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawWaypointCave path: Client/UI/IconUtil.cs startLine: 18074 @@ -2123,8 +2123,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawWaypointVessel path: Client/UI/IconUtil.cs startLine: 18170 @@ -2165,8 +2165,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawWaypointTrader path: Client/UI/IconUtil.cs startLine: 18396 @@ -2207,8 +2207,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawWaypointStar2 path: Client/UI/IconUtil.cs startLine: 18830 @@ -2249,8 +2249,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawWaypointStar1 path: Client/UI/IconUtil.cs startLine: 18899 @@ -2291,8 +2291,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawWaypointSpiral path: Client/UI/IconUtil.cs startLine: 18964 @@ -2333,8 +2333,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawWaypointRuins path: Client/UI/IconUtil.cs startLine: 19035 @@ -2375,8 +2375,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawWaypointRocks path: Client/UI/IconUtil.cs startLine: 19514 @@ -2417,8 +2417,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawWayointBee path: Client/UI/IconUtil.cs startLine: 19717 @@ -2459,8 +2459,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawundo_svg path: Client/UI/IconUtil.cs startLine: 20067 @@ -2501,8 +2501,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawcursor_svg path: Client/UI/IconUtil.cs startLine: 20118 @@ -2543,8 +2543,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawrepeat_svg path: Client/UI/IconUtil.cs startLine: 20155 @@ -2585,8 +2585,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawselect_svg path: Client/UI/IconUtil.cs startLine: 20269 @@ -2627,8 +2627,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawredo_svg path: Client/UI/IconUtil.cs startLine: 21067 @@ -2669,8 +2669,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawduplicate_svg path: Client/UI/IconUtil.cs startLine: 21119 @@ -2711,8 +2711,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawairbrush_svg path: Client/UI/IconUtil.cs startLine: 21241 @@ -2753,8 +2753,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawbrush_svg path: Client/UI/IconUtil.cs startLine: 21687 @@ -2795,8 +2795,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Draweraser_svg path: Client/UI/IconUtil.cs startLine: 21746 @@ -2837,8 +2837,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawerode_svg path: Client/UI/IconUtil.cs startLine: 21890 @@ -2879,8 +2879,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawfloodfill_svg path: Client/UI/IconUtil.cs startLine: 22036 @@ -2921,8 +2921,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawgrowshrink_svg path: Client/UI/IconUtil.cs startLine: 22207 @@ -2963,8 +2963,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawimport_svg path: Client/UI/IconUtil.cs startLine: 22332 @@ -3005,8 +3005,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawline_svg path: Client/UI/IconUtil.cs startLine: 22433 @@ -3047,8 +3047,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawraiselower_svg path: Client/UI/IconUtil.cs startLine: 22470 @@ -3089,8 +3089,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawtree_svg path: Client/UI/IconUtil.cs startLine: 22582 @@ -3131,8 +3131,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawnone_svg path: Client/UI/IconUtil.cs startLine: 23094 @@ -3173,8 +3173,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/IconUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drawlake_svg path: Client/UI/IconUtil.cs startLine: 23153 diff --git a/api/Vintagestory.API.Client.InfoTextDelegate.yml b/api/Vintagestory.API.Client.InfoTextDelegate.yml index bd21ae6f..43f22126 100644 --- a/api/Vintagestory.API.Client.InfoTextDelegate.yml +++ b/api/Vintagestory.API.Client.InfoTextDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InfoTextDelegate path: Client/UI/Elements/Impl/Interactive/Text/GuiElementItemstackInfo.cs startLine: 8 diff --git a/api/Vintagestory.API.Client.IngameDiscoveryDelegate.yml b/api/Vintagestory.API.Client.IngameDiscoveryDelegate.yml index 46d6d7fa..89d128ee 100644 --- a/api/Vintagestory.API.Client.IngameDiscoveryDelegate.yml +++ b/api/Vintagestory.API.Client.IngameDiscoveryDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IngameDiscoveryDelegate path: Client/API/IClientEventAPI.cs startLine: 15 diff --git a/api/Vintagestory.API.Client.IngameErrorDelegate.yml b/api/Vintagestory.API.Client.IngameErrorDelegate.yml index dd15f96e..1dba5a45 100644 --- a/api/Vintagestory.API.Client.IngameErrorDelegate.yml +++ b/api/Vintagestory.API.Client.IngameErrorDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IngameErrorDelegate path: Client/API/IClientEventAPI.cs startLine: 14 diff --git a/api/Vintagestory.API.Client.InteractionMatcherDelegate.yml b/api/Vintagestory.API.Client.InteractionMatcherDelegate.yml index 83b243d4..7c063ff8 100644 --- a/api/Vintagestory.API.Client.InteractionMatcherDelegate.yml +++ b/api/Vintagestory.API.Client.InteractionMatcherDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InteractionMatcherDelegate path: Client/API/IClientWorldAccessor.cs startLine: 10 diff --git a/api/Vintagestory.API.Client.InteractionStacksDelegate.yml b/api/Vintagestory.API.Client.InteractionStacksDelegate.yml index affd97cd..9061474e 100644 --- a/api/Vintagestory.API.Client.InteractionStacksDelegate.yml +++ b/api/Vintagestory.API.Client.InteractionStacksDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InteractionStacksDelegate path: Client/API/IClientWorldAccessor.cs startLine: 9 diff --git a/api/Vintagestory.API.Client.IsPlayerReadyDelegate.yml b/api/Vintagestory.API.Client.IsPlayerReadyDelegate.yml index e963004a..887df991 100644 --- a/api/Vintagestory.API.Client.IsPlayerReadyDelegate.yml +++ b/api/Vintagestory.API.Client.IsPlayerReadyDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsPlayerReadyDelegate path: Client/API/IClientEventAPI.cs startLine: 10 diff --git a/api/Vintagestory.API.Client.ItemRenderDelegate.yml b/api/Vintagestory.API.Client.ItemRenderDelegate.yml index 98b02c85..4be2d06f 100644 --- a/api/Vintagestory.API.Client.ItemRenderDelegate.yml +++ b/api/Vintagestory.API.Client.ItemRenderDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ItemRenderDelegate path: Client/API/IClientEventAPI.cs startLine: 42 diff --git a/api/Vintagestory.API.Client.ItemRenderInfo.yml b/api/Vintagestory.API.Client.ItemRenderInfo.yml index 75864279..b6ec46ed 100644 --- a/api/Vintagestory.API.Client.ItemRenderInfo.yml +++ b/api/Vintagestory.API.Client.ItemRenderInfo.yml @@ -30,8 +30,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ItemRenderInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ItemRenderInfo path: Client/UI/ItemRenderInfo.cs startLine: 9 @@ -70,8 +70,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ItemRenderInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ModelRef path: Client/UI/ItemRenderInfo.cs startLine: 14 @@ -99,8 +99,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ItemRenderInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Transform path: Client/UI/ItemRenderInfo.cs startLine: 18 @@ -128,8 +128,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ItemRenderInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CullFaces path: Client/UI/ItemRenderInfo.cs startLine: 22 @@ -157,8 +157,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ItemRenderInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TextureId path: Client/UI/ItemRenderInfo.cs startLine: 26 @@ -186,8 +186,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ItemRenderInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TextureSize path: Client/UI/ItemRenderInfo.cs startLine: 27 @@ -213,8 +213,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ItemRenderInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AlphaTest path: Client/UI/ItemRenderInfo.cs startLine: 31 @@ -242,8 +242,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ItemRenderInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HalfTransparent path: Client/UI/ItemRenderInfo.cs startLine: 35 @@ -271,8 +271,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ItemRenderInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NormalShaded path: Client/UI/ItemRenderInfo.cs startLine: 37 @@ -298,8 +298,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ItemRenderInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ApplyColor path: Client/UI/ItemRenderInfo.cs startLine: 39 @@ -325,8 +325,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ItemRenderInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OverlayTexture path: Client/UI/ItemRenderInfo.cs startLine: 41 @@ -352,8 +352,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ItemRenderInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OverlayOpacity path: Client/UI/ItemRenderInfo.cs startLine: 43 @@ -379,8 +379,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ItemRenderInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DamageEffect path: Client/UI/ItemRenderInfo.cs startLine: 45 @@ -406,8 +406,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ItemRenderInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InSlot path: Client/UI/ItemRenderInfo.cs startLine: 50 @@ -435,8 +435,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ItemRenderInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: dt path: Client/UI/ItemRenderInfo.cs startLine: 52 @@ -462,8 +462,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/ItemRenderInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetRotOverlay path: Client/UI/ItemRenderInfo.cs startLine: 54 diff --git a/api/Vintagestory.API.Client.ItemstackComponentBase.yml b/api/Vintagestory.API.Client.ItemstackComponentBase.yml index 1a338830..0d027f72 100644 --- a/api/Vintagestory.API.Client.ItemstackComponentBase.yml +++ b/api/Vintagestory.API.Client.ItemstackComponentBase.yml @@ -27,8 +27,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ItemstackComponentBase path: Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackComponentBase.cs startLine: 9 @@ -86,8 +86,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: renderedTooltipSlot path: Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackComponentBase.cs startLine: 14 @@ -113,8 +113,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: stackInfo path: Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackComponentBase.cs startLine: 15 @@ -140,8 +140,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: capi path: Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackComponentBase.cs startLine: 16 @@ -167,8 +167,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: stackInfoBounds path: Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackComponentBase.cs startLine: 21 @@ -194,8 +194,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: parentBounds path: Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackComponentBase.cs startLine: 23 @@ -221,8 +221,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: offY path: Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackComponentBase.cs startLine: 25 @@ -248,8 +248,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: offX path: Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackComponentBase.cs startLine: 26 @@ -275,8 +275,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: dummyInv path: Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackComponentBase.cs startLine: 27 @@ -302,8 +302,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackComponentBase.cs startLine: 31 @@ -334,8 +334,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnRequireInfoText path: Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackComponentBase.cs startLine: 59 @@ -365,8 +365,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderItemstackTooltip path: Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackComponentBase.cs startLine: 64 @@ -403,8 +403,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackComponentBase.cs startLine: 112 diff --git a/api/Vintagestory.API.Client.ItemstackTextComponent.yml b/api/Vintagestory.API.Client.ItemstackTextComponent.yml index b2e3223c..45588569 100644 --- a/api/Vintagestory.API.Client.ItemstackTextComponent.yml +++ b/api/Vintagestory.API.Client.ItemstackTextComponent.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ItemstackTextComponent path: Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackTextComponent.cs startLine: 10 @@ -84,8 +84,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShowStacksize path: Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackTextComponent.cs startLine: 14 @@ -111,8 +111,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackTextComponent.cs startLine: 19 @@ -153,8 +153,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CalcBounds path: Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackTextComponent.cs startLine: 31 @@ -204,8 +204,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackTextComponent.cs startLine: 53 @@ -240,8 +240,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackTextComponent.cs startLine: 60 @@ -285,8 +285,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDown path: Client/UI/Elements/Impl/Interactive/Text/Richtext/ItemstackTextComponent.cs startLine: 94 diff --git a/api/Vintagestory.API.Client.JsonDialogSettings.yml b/api/Vintagestory.API.Client.JsonDialogSettings.yml index dc627c93..5ba18c03 100644 --- a/api/Vintagestory.API.Client.JsonDialogSettings.yml +++ b/api/Vintagestory.API.Client.JsonDialogSettings.yml @@ -27,8 +27,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: JsonDialogSettings path: Client/UI/JsonDialog.cs startLine: 26 @@ -62,8 +62,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Client/UI/JsonDialog.cs startLine: 28 @@ -89,8 +89,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Alignment path: Client/UI/JsonDialog.cs startLine: 29 @@ -116,8 +116,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PosX path: Client/UI/JsonDialog.cs startLine: 30 @@ -143,8 +143,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PosY path: Client/UI/JsonDialog.cs startLine: 31 @@ -170,8 +170,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rows path: Client/UI/JsonDialog.cs startLine: 32 @@ -197,8 +197,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SizeMultiplier path: Client/UI/JsonDialog.cs startLine: 33 @@ -224,8 +224,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Padding path: Client/UI/JsonDialog.cs startLine: 34 @@ -251,8 +251,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DisableWorldInteract path: Client/UI/JsonDialog.cs startLine: 35 @@ -278,8 +278,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnSet path: Client/UI/JsonDialog.cs startLine: 40 @@ -307,8 +307,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnGet path: Client/UI/JsonDialog.cs startLine: 44 @@ -336,8 +336,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Client/UI/JsonDialog.cs startLine: 50 @@ -368,8 +368,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Client/UI/JsonDialog.cs startLine: 68 diff --git a/api/Vintagestory.API.Client.KeyCombination.yml b/api/Vintagestory.API.Client.KeyCombination.yml index bf7adbc4..f5144ab7 100644 --- a/api/Vintagestory.API.Client.KeyCombination.yml +++ b/api/Vintagestory.API.Client.KeyCombination.yml @@ -27,8 +27,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/KeyCombination.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: KeyCombination path: Client/Input/KeyCombination.cs startLine: 10 @@ -63,8 +63,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/KeyCombination.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MouseStart path: Client/Input/KeyCombination.cs startLine: 15 @@ -92,8 +92,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/KeyCombination.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: KeyCode path: Client/Input/KeyCombination.cs startLine: 20 @@ -121,8 +121,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/KeyCombination.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SecondKeyCode path: Client/Input/KeyCombination.cs startLine: 25 @@ -150,8 +150,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/KeyCombination.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Ctrl path: Client/Input/KeyCombination.cs startLine: 30 @@ -179,8 +179,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/KeyCombination.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Alt path: Client/Input/KeyCombination.cs startLine: 35 @@ -208,8 +208,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/KeyCombination.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Shift path: Client/Input/KeyCombination.cs startLine: 40 @@ -237,8 +237,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/KeyCombination.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsMouseButton path: Client/Input/KeyCombination.cs startLine: 42 @@ -271,8 +271,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/KeyCombination.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnKeyUp path: Client/Input/KeyCombination.cs startLine: 47 @@ -298,8 +298,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/KeyCombination.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Client/Input/KeyCombination.cs startLine: 53 @@ -330,8 +330,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/KeyCombination.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Client/Input/KeyCombination.cs startLine: 72 @@ -361,8 +361,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/KeyCombination.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PrimaryAsString path: Client/Input/KeyCombination.cs startLine: 77 @@ -389,8 +389,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/KeyCombination.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SecondaryAsString path: Client/Input/KeyCombination.cs startLine: 83 diff --git a/api/Vintagestory.API.Client.KeyConverter.yml b/api/Vintagestory.API.Client.KeyConverter.yml index d929c596..1f1ef211 100644 --- a/api/Vintagestory.API.Client.KeyConverter.yml +++ b/api/Vintagestory.API.Client.KeyConverter.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: KeyConverter path: Client/Input/EnumGlKeys.cs startLine: 71 @@ -54,8 +54,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NewKeysToGlKeys path: Client/Input/EnumGlKeys.cs startLine: 73 @@ -81,8 +81,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/EnumGlKeys.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GlKeysToNew path: Client/Input/EnumGlKeys.cs startLine: 74 diff --git a/api/Vintagestory.API.Client.KeyEvent.yml b/api/Vintagestory.API.Client.KeyEvent.yml index 1f137bf2..75148f94 100644 --- a/api/Vintagestory.API.Client.KeyEvent.yml +++ b/api/Vintagestory.API.Client.KeyEvent.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/KeyEvent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: KeyEvent path: Client/Input/KeyEvent.cs startLine: 3 @@ -58,8 +58,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/KeyEvent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: KeyChar path: Client/Input/KeyEvent.cs startLine: 8 @@ -89,8 +89,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/KeyEvent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: KeyCode path: Client/Input/KeyEvent.cs startLine: 13 @@ -120,8 +120,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/KeyEvent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: KeyCode2 path: Client/Input/KeyEvent.cs startLine: 18 @@ -151,8 +151,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/KeyEvent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Handled path: Client/Input/KeyEvent.cs startLine: 23 @@ -182,8 +182,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/KeyEvent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CtrlPressed path: Client/Input/KeyEvent.cs startLine: 28 @@ -213,8 +213,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/KeyEvent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CommandPressed path: Client/Input/KeyEvent.cs startLine: 33 @@ -244,8 +244,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/KeyEvent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShiftPressed path: Client/Input/KeyEvent.cs startLine: 38 @@ -275,8 +275,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/KeyEvent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AltPressed path: Client/Input/KeyEvent.cs startLine: 43 diff --git a/api/Vintagestory.API.Client.KeyEventDelegate.yml b/api/Vintagestory.API.Client.KeyEventDelegate.yml index 3defe1dd..298890c8 100644 --- a/api/Vintagestory.API.Client.KeyEventDelegate.yml +++ b/api/Vintagestory.API.Client.KeyEventDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: KeyEventDelegate path: Client/API/IClientEventAPI.cs startLine: 7 diff --git a/api/Vintagestory.API.Client.LineMeshUtil.yml b/api/Vintagestory.API.Client.LineMeshUtil.yml index 5509d5f7..5e6ad9de 100644 --- a/api/Vintagestory.API.Client.LineMeshUtil.yml +++ b/api/Vintagestory.API.Client.LineMeshUtil.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/LineMeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LineMeshUtil path: Client/Model/Mesh/LineMeshUtil.cs startLine: 5 @@ -55,8 +55,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/LineMeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRectangle path: Client/Model/Mesh/LineMeshUtil.cs startLine: 12 @@ -93,8 +93,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/LineMeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCube path: Client/Model/Mesh/LineMeshUtil.cs startLine: 36 @@ -131,8 +131,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/LineMeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddLine2D path: Client/Model/Mesh/LineMeshUtil.cs startLine: 99 @@ -181,8 +181,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/LineMeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddLineLoop path: Client/Model/Mesh/LineMeshUtil.cs startLine: 119 @@ -231,8 +231,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/LineMeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddVertex path: Client/Model/Mesh/LineMeshUtil.cs startLine: 145 diff --git a/api/Vintagestory.API.Client.LineRectangled.yml b/api/Vintagestory.API.Client.LineRectangled.yml index bcb5e2c6..c85ffb56 100644 --- a/api/Vintagestory.API.Client.LineRectangled.yml +++ b/api/Vintagestory.API.Client.LineRectangled.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LineRectangled path: Client/UI/TextDrawUtil.cs startLine: 66 @@ -61,8 +61,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Ascent path: Client/UI/TextDrawUtil.cs startLine: 68 @@ -88,8 +88,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AscentOrHeight path: Client/UI/TextDrawUtil.cs startLine: 70 @@ -117,8 +117,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/TextDrawUtil.cs startLine: 78 @@ -155,8 +155,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/TextDrawUtil.cs startLine: 82 diff --git a/api/Vintagestory.API.Client.LinkTextComponent.yml b/api/Vintagestory.API.Client.LinkTextComponent.yml index b5460ef0..9b255fb9 100644 --- a/api/Vintagestory.API.Client.LinkTextComponent.yml +++ b/api/Vintagestory.API.Client.LinkTextComponent.yml @@ -28,8 +28,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/TextLinkComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LinkTextComponent path: Client/UI/Elements/Impl/Interactive/Text/Richtext/TextLinkComponent.cs startLine: 6 @@ -83,8 +83,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/TextLinkComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Href path: Client/UI/Elements/Impl/Interactive/Text/Richtext/TextLinkComponent.cs startLine: 10 @@ -110,8 +110,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/TextLinkComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clickable path: Client/UI/Elements/Impl/Interactive/Text/Richtext/TextLinkComponent.cs startLine: 12 @@ -139,8 +139,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/TextLinkComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Text/Richtext/TextLinkComponent.cs startLine: 34 @@ -183,8 +183,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/TextLinkComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CalcBounds path: Client/UI/Elements/Impl/Interactive/Text/Richtext/TextLinkComponent.cs startLine: 48 @@ -234,8 +234,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/TextLinkComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Interactive/Text/Richtext/TextLinkComponent.cs startLine: 53 @@ -268,8 +268,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/TextLinkComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/Text/Richtext/TextLinkComponent.cs startLine: 123 @@ -313,8 +313,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/TextLinkComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UseMouseOverCursor path: Client/UI/Elements/Impl/Interactive/Text/Richtext/TextLinkComponent.cs startLine: 150 @@ -346,8 +346,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/TextLinkComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDown path: Client/UI/Elements/Impl/Interactive/Text/Richtext/TextLinkComponent.cs startLine: 156 @@ -377,8 +377,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/TextLinkComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseUp path: Client/UI/Elements/Impl/Interactive/Text/Richtext/TextLinkComponent.cs startLine: 172 @@ -408,8 +408,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/TextLinkComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetHref path: Client/UI/Elements/Impl/Interactive/Text/Richtext/TextLinkComponent.cs startLine: 187 @@ -442,8 +442,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/TextLinkComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Trigger path: Client/UI/Elements/Impl/Interactive/Text/Richtext/TextLinkComponent.cs startLine: 193 @@ -468,8 +468,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/TextLinkComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HandleLink path: Client/UI/Elements/Impl/Interactive/Text/Richtext/TextLinkComponent.cs startLine: 206 @@ -494,8 +494,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/TextLinkComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Interactive/Text/Richtext/TextLinkComponent.cs startLine: 231 diff --git a/api/Vintagestory.API.Client.LoadedTexture.yml b/api/Vintagestory.API.Client.LoadedTexture.yml index 7015a8fc..69a31eeb 100644 --- a/api/Vintagestory.API.Client.LoadedTexture.yml +++ b/api/Vintagestory.API.Client.LoadedTexture.yml @@ -27,8 +27,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/LoadedTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadedTexture path: Client/Texture/LoadedTexture.cs startLine: 8 @@ -66,8 +66,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/LoadedTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TextureId path: Client/Texture/LoadedTexture.cs startLine: 13 @@ -95,8 +95,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/LoadedTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Width path: Client/Texture/LoadedTexture.cs startLine: 18 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/LoadedTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Height path: Client/Texture/LoadedTexture.cs startLine: 23 @@ -153,8 +153,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/LoadedTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: disposed path: Client/Texture/LoadedTexture.cs startLine: 25 @@ -180,8 +180,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/LoadedTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: trace path: Client/Texture/LoadedTexture.cs startLine: 26 @@ -207,8 +207,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/LoadedTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: capi path: Client/Texture/LoadedTexture.cs startLine: 27 @@ -234,8 +234,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/LoadedTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Disposed path: Client/Texture/LoadedTexture.cs startLine: 29 @@ -263,8 +263,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/LoadedTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IgnoreUndisposed path: Client/Texture/LoadedTexture.cs startLine: 34 @@ -294,8 +294,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/LoadedTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Texture/LoadedTexture.cs startLine: 41 @@ -329,8 +329,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/LoadedTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Texture/LoadedTexture.cs startLine: 58 @@ -373,8 +373,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/LoadedTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/Texture/LoadedTexture.cs startLine: 74 @@ -403,8 +403,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/LoadedTexture.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Finalize path: Client/Texture/LoadedTexture.cs startLine: 84 diff --git a/api/Vintagestory.API.Client.MatrixToolsd.yml b/api/Vintagestory.API.Client.MatrixToolsd.yml index 9fda790c..00bfc89b 100644 --- a/api/Vintagestory.API.Client.MatrixToolsd.yml +++ b/api/Vintagestory.API.Client.MatrixToolsd.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/MatrixTools.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MatrixToolsd path: Math/Matrix/MatrixTools.cs startLine: 4 @@ -54,8 +54,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/MatrixTools.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Project path: Math/Matrix/MatrixTools.cs startLine: 6 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/MatrixTools.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MatFollowPlayer path: Math/Matrix/MatrixTools.cs startLine: 21 @@ -128,8 +128,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/MatrixTools.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadPlayerFacingMatrix path: Math/Matrix/MatrixTools.cs startLine: 28 @@ -160,8 +160,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/MatrixTools.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MatFacePlayer path: Math/Matrix/MatrixTools.cs startLine: 65 diff --git a/api/Vintagestory.API.Client.Matrixf.yml b/api/Vintagestory.API.Client.Matrixf.yml index c07af604..9d77b819 100644 --- a/api/Vintagestory.API.Client.Matrixf.yml +++ b/api/Vintagestory.API.Client.Matrixf.yml @@ -6,6 +6,7 @@ items: parent: Vintagestory.API.Client children: - Vintagestory.API.Client.Matrixf.#ctor + - Vintagestory.API.Client.Matrixf.#ctor(System.Single[]) - Vintagestory.API.Client.Matrixf.Clone - Vintagestory.API.Client.Matrixf.Create - Vintagestory.API.Client.Matrixf.FollowPlayer @@ -13,6 +14,7 @@ items: - Vintagestory.API.Client.Matrixf.Identity - Vintagestory.API.Client.Matrixf.Invert - Vintagestory.API.Client.Matrixf.Mul(System.Single[]) + - Vintagestory.API.Client.Matrixf.Mul(Vintagestory.API.Client.Matrixf) - Vintagestory.API.Client.Matrixf.ReverseMul(System.Single[]) - Vintagestory.API.Client.Matrixf.Rotate(System.Single,System.Single,System.Single) - Vintagestory.API.Client.Matrixf.Rotate(Vintagestory.API.MathTools.Vec3f) @@ -42,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Matrixf path: Math/Matrix/Matrix.cs startLine: 4 @@ -77,8 +79,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Values path: Math/Matrix/Matrix.cs startLine: 6 @@ -104,8 +106,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ValuesAsDouble path: Math/Matrix/Matrix.cs startLine: 8 @@ -133,8 +135,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Matrix/Matrix.cs startLine: 17 @@ -148,6 +150,38 @@ items: nameWithType.vb: Matrixf.New() fullName.vb: Vintagestory.API.Client.Matrixf.New() name.vb: New() +- uid: Vintagestory.API.Client.Matrixf.#ctor(System.Single[]) + commentId: M:Vintagestory.API.Client.Matrixf.#ctor(System.Single[]) + id: '#ctor(System.Single[])' + parent: Vintagestory.API.Client.Matrixf + langs: + - csharp + - vb + name: Matrixf(float[]) + nameWithType: Matrixf.Matrixf(float[]) + fullName: Vintagestory.API.Client.Matrixf.Matrixf(float[]) + type: Constructor + source: + remote: + path: VintagestoryApi/Math/Matrix/Matrix.cs + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + id: .ctor + path: Math/Matrix/Matrix.cs + startLine: 22 + assemblies: + - VintagestoryAPI + namespace: Vintagestory.API.Client + syntax: + content: public Matrixf(float[] values) + parameters: + - id: values + type: System.Single[] + content.vb: Public Sub New(values As Single()) + overload: Vintagestory.API.Client.Matrixf.#ctor* + nameWithType.vb: Matrixf.New(Single()) + fullName.vb: Vintagestory.API.Client.Matrixf.New(Single()) + name.vb: New(Single()) - uid: Vintagestory.API.Client.Matrixf.Create commentId: M:Vintagestory.API.Client.Matrixf.Create id: Create @@ -162,11 +196,11 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Create path: Math/Matrix/Matrix.cs - startLine: 22 + startLine: 28 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -190,11 +224,11 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Identity path: Math/Matrix/Matrix.cs - startLine: 27 + startLine: 33 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -218,11 +252,11 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Matrix/Matrix.cs - startLine: 33 + startLine: 39 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -252,11 +286,11 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Matrix/Matrix.cs - startLine: 54 + startLine: 60 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -286,11 +320,11 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Translate path: Math/Matrix/Matrix.cs - startLine: 75 + startLine: 81 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -324,11 +358,11 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Translate path: Math/Matrix/Matrix.cs - startLine: 82 + startLine: 88 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -362,11 +396,11 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Scale path: Math/Matrix/Matrix.cs - startLine: 88 + startLine: 94 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -400,11 +434,11 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotateDeg path: Math/Matrix/Matrix.cs - startLine: 94 + startLine: 100 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -431,11 +465,11 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rotate path: Math/Matrix/Matrix.cs - startLine: 103 + startLine: 109 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -462,11 +496,11 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rotate path: Math/Matrix/Matrix.cs - startLine: 111 + startLine: 117 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -500,11 +534,11 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotateX path: Math/Matrix/Matrix.cs - startLine: 119 + startLine: 125 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -534,11 +568,11 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotateY path: Math/Matrix/Matrix.cs - startLine: 125 + startLine: 131 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -568,11 +602,11 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotateZ path: Math/Matrix/Matrix.cs - startLine: 131 + startLine: 137 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -602,11 +636,11 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotateXDeg path: Math/Matrix/Matrix.cs - startLine: 141 + startLine: 147 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -636,11 +670,11 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotateYDeg path: Math/Matrix/Matrix.cs - startLine: 147 + startLine: 153 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -670,11 +704,11 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotateZDeg path: Math/Matrix/Matrix.cs - startLine: 153 + startLine: 159 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -704,11 +738,11 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TransformVector path: Math/Matrix/Matrix.cs - startLine: 160 + startLine: 166 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -735,11 +769,11 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TransformVector path: Math/Matrix/Matrix.cs - startLine: 167 + startLine: 173 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -766,11 +800,11 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mul path: Math/Matrix/Matrix.cs - startLine: 175 + startLine: 181 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -786,6 +820,37 @@ items: nameWithType.vb: Matrixf.Mul(Single()) fullName.vb: Vintagestory.API.Client.Matrixf.Mul(Single()) name.vb: Mul(Single()) +- uid: Vintagestory.API.Client.Matrixf.Mul(Vintagestory.API.Client.Matrixf) + commentId: M:Vintagestory.API.Client.Matrixf.Mul(Vintagestory.API.Client.Matrixf) + id: Mul(Vintagestory.API.Client.Matrixf) + parent: Vintagestory.API.Client.Matrixf + langs: + - csharp + - vb + name: Mul(Matrixf) + nameWithType: Matrixf.Mul(Matrixf) + fullName: Vintagestory.API.Client.Matrixf.Mul(Vintagestory.API.Client.Matrixf) + type: Method + source: + remote: + path: VintagestoryApi/Math/Matrix/Matrix.cs + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git + id: Mul + path: Math/Matrix/Matrix.cs + startLine: 187 + assemblies: + - VintagestoryAPI + namespace: Vintagestory.API.Client + syntax: + content: public Matrixf Mul(Matrixf matrix) + parameters: + - id: matrix + type: Vintagestory.API.Client.Matrixf + return: + type: Vintagestory.API.Client.Matrixf + content.vb: Public Function Mul(matrix As Matrixf) As Matrixf + overload: Vintagestory.API.Client.Matrixf.Mul* - uid: Vintagestory.API.Client.Matrixf.ReverseMul(System.Single[]) commentId: M:Vintagestory.API.Client.Matrixf.ReverseMul(System.Single[]) id: ReverseMul(System.Single[]) @@ -800,11 +865,11 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReverseMul path: Math/Matrix/Matrix.cs - startLine: 181 + startLine: 193 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -834,11 +899,11 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FollowPlayer path: Math/Matrix/Matrix.cs - startLine: 187 + startLine: 199 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -862,11 +927,11 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FollowPlayerXZ path: Math/Matrix/Matrix.cs - startLine: 195 + startLine: 207 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -890,11 +955,11 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Invert path: Math/Matrix/Matrix.cs - startLine: 202 + startLine: 214 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client @@ -918,11 +983,11 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Matrix.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Math/Matrix/Matrix.cs - startLine: 208 + startLine: 220 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Client diff --git a/api/Vintagestory.API.Client.MeshData.MeshDataFilterDelegate.yml b/api/Vintagestory.API.Client.MeshData.MeshDataFilterDelegate.yml index 1f5c6345..bc8c7655 100644 --- a/api/Vintagestory.API.Client.MeshData.MeshDataFilterDelegate.yml +++ b/api/Vintagestory.API.Client.MeshData.MeshDataFilterDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MeshDataFilterDelegate path: Client/Model/Mesh/MeshData.cs startLine: 758 diff --git a/api/Vintagestory.API.Client.MeshData.yml b/api/Vintagestory.API.Client.MeshData.yml index aad3c936..599f673c 100644 --- a/api/Vintagestory.API.Client.MeshData.yml +++ b/api/Vintagestory.API.Client.MeshData.yml @@ -152,8 +152,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MeshData path: Client/Model/Mesh/MeshData.cs startLine: 12 @@ -196,8 +196,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Recycler path: Client/Model/Mesh/MeshData.cs startLine: 14 @@ -223,8 +223,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StandardVerticesPerFace path: Client/Model/Mesh/MeshData.cs startLine: 15 @@ -250,8 +250,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StandardIndicesPerFace path: Client/Model/Mesh/MeshData.cs startLine: 16 @@ -277,8 +277,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BaseSizeInBytes path: Client/Model/Mesh/MeshData.cs startLine: 17 @@ -304,8 +304,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TextureIds path: Client/Model/Mesh/MeshData.cs startLine: 19 @@ -331,8 +331,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: xyz path: Client/Model/Mesh/MeshData.cs startLine: 24 @@ -360,8 +360,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Flags path: Client/Model/Mesh/MeshData.cs startLine: 29 @@ -389,8 +389,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HasAnyWindModeSet path: Client/Model/Mesh/MeshData.cs startLine: 34 @@ -418,8 +418,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Normals path: Client/Model/Mesh/MeshData.cs startLine: 44 @@ -458,8 +458,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Uv path: Client/Model/Mesh/MeshData.cs startLine: 49 @@ -487,8 +487,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rgba path: Client/Model/Mesh/MeshData.cs startLine: 54 @@ -516,8 +516,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Indices path: Client/Model/Mesh/MeshData.cs startLine: 59 @@ -545,8 +545,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TextureIndices path: Client/Model/Mesh/MeshData.cs startLine: 64 @@ -574,8 +574,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CustomFloats path: Client/Model/Mesh/MeshData.cs startLine: 70 @@ -603,8 +603,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CustomInts path: Client/Model/Mesh/MeshData.cs startLine: 75 @@ -632,8 +632,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CustomShorts path: Client/Model/Mesh/MeshData.cs startLine: 80 @@ -661,8 +661,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CustomBytes path: Client/Model/Mesh/MeshData.cs startLine: 85 @@ -690,8 +690,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XyzInstanced path: Client/Model/Mesh/MeshData.cs startLine: 90 @@ -719,8 +719,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UvInstanced path: Client/Model/Mesh/MeshData.cs startLine: 94 @@ -748,8 +748,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RgbaInstanced path: Client/Model/Mesh/MeshData.cs startLine: 98 @@ -777,8 +777,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rgba2Instanced path: Client/Model/Mesh/MeshData.cs startLine: 102 @@ -806,8 +806,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IndicesInstanced path: Client/Model/Mesh/MeshData.cs startLine: 106 @@ -835,8 +835,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FlagsInstanced path: Client/Model/Mesh/MeshData.cs startLine: 110 @@ -864,8 +864,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XyzStatic path: Client/Model/Mesh/MeshData.cs startLine: 116 @@ -893,8 +893,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UvStatic path: Client/Model/Mesh/MeshData.cs startLine: 120 @@ -922,8 +922,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RgbaStatic path: Client/Model/Mesh/MeshData.cs startLine: 124 @@ -951,8 +951,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rgba2Static path: Client/Model/Mesh/MeshData.cs startLine: 128 @@ -980,8 +980,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IndicesStatic path: Client/Model/Mesh/MeshData.cs startLine: 132 @@ -1009,8 +1009,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FlagsStatic path: Client/Model/Mesh/MeshData.cs startLine: 136 @@ -1038,8 +1038,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XyzOffset path: Client/Model/Mesh/MeshData.cs startLine: 142 @@ -1067,8 +1067,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UvOffset path: Client/Model/Mesh/MeshData.cs startLine: 146 @@ -1096,8 +1096,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RgbaOffset path: Client/Model/Mesh/MeshData.cs startLine: 150 @@ -1125,8 +1125,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rgba2Offset path: Client/Model/Mesh/MeshData.cs startLine: 154 @@ -1154,8 +1154,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FlagsOffset path: Client/Model/Mesh/MeshData.cs startLine: 158 @@ -1183,8 +1183,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NormalsOffset path: Client/Model/Mesh/MeshData.cs startLine: 162 @@ -1212,8 +1212,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IndicesOffset path: Client/Model/Mesh/MeshData.cs startLine: 166 @@ -1241,8 +1241,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: mode path: Client/Model/Mesh/MeshData.cs startLine: 172 @@ -1270,8 +1270,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NormalsCount path: Client/Model/Mesh/MeshData.cs startLine: 177 @@ -1299,8 +1299,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VerticesCount path: Client/Model/Mesh/MeshData.cs startLine: 182 @@ -1328,8 +1328,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IndicesCount path: Client/Model/Mesh/MeshData.cs startLine: 187 @@ -1357,8 +1357,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VerticesMax path: Client/Model/Mesh/MeshData.cs startLine: 192 @@ -1386,8 +1386,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IndicesMax path: Client/Model/Mesh/MeshData.cs startLine: 197 @@ -1415,8 +1415,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XyzFaces path: Client/Model/Mesh/MeshData.cs startLine: 203 @@ -1444,8 +1444,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XyzFacesCount path: Client/Model/Mesh/MeshData.cs startLine: 208 @@ -1473,8 +1473,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TextureIndicesCount path: Client/Model/Mesh/MeshData.cs startLine: 210 @@ -1500,8 +1500,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IndicesPerFace path: Client/Model/Mesh/MeshData.cs startLine: 213 @@ -1527,8 +1527,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VerticesPerFace path: Client/Model/Mesh/MeshData.cs startLine: 214 @@ -1554,8 +1554,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClimateColorMapIds path: Client/Model/Mesh/MeshData.cs startLine: 219 @@ -1583,8 +1583,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SeasonColorMapIds path: Client/Model/Mesh/MeshData.cs startLine: 223 @@ -1612,8 +1612,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderPasses path: Client/Model/Mesh/MeshData.cs startLine: 226 @@ -1653,8 +1653,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderPassesAndExtraBits path: Client/Model/Mesh/MeshData.cs startLine: 235 @@ -1688,8 +1688,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorMapIdsCount path: Client/Model/Mesh/MeshData.cs startLine: 240 @@ -1717,8 +1717,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderPassCount path: Client/Model/Mesh/MeshData.cs startLine: 245 @@ -1746,8 +1746,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Recyclable path: Client/Model/Mesh/MeshData.cs startLine: 250 @@ -1775,8 +1775,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RecyclingTime path: Client/Model/Mesh/MeshData.cs startLine: 255 @@ -1804,8 +1804,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetVerticesCount path: Client/Model/Mesh/MeshData.cs startLine: 262 @@ -1836,8 +1836,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetVerticesCount path: Client/Model/Mesh/MeshData.cs startLine: 269 @@ -1872,8 +1872,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetIndicesCount path: Client/Model/Mesh/MeshData.cs startLine: 276 @@ -1904,8 +1904,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetIndicesCount path: Client/Model/Mesh/MeshData.cs startLine: 282 @@ -1939,8 +1939,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XyzSize path: Client/Model/Mesh/MeshData.cs startLine: 287 @@ -1968,8 +1968,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NormalSize path: Client/Model/Mesh/MeshData.cs startLine: 292 @@ -1997,8 +1997,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RgbaSize path: Client/Model/Mesh/MeshData.cs startLine: 297 @@ -2026,8 +2026,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UvSize path: Client/Model/Mesh/MeshData.cs startLine: 302 @@ -2055,8 +2055,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IndexSize path: Client/Model/Mesh/MeshData.cs startLine: 307 @@ -2084,8 +2084,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FlagsSize path: Client/Model/Mesh/MeshData.cs startLine: 312 @@ -2113,8 +2113,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XyzCount path: Client/Model/Mesh/MeshData.cs startLine: 317 @@ -2144,8 +2144,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RgbaCount path: Client/Model/Mesh/MeshData.cs startLine: 325 @@ -2175,8 +2175,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rgba2Count path: Client/Model/Mesh/MeshData.cs startLine: 333 @@ -2206,8 +2206,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FlagsCount path: Client/Model/Mesh/MeshData.cs startLine: 341 @@ -2237,8 +2237,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UvCount path: Client/Model/Mesh/MeshData.cs startLine: 349 @@ -2268,8 +2268,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetXyz path: Client/Model/Mesh/MeshData.cs startLine: 355 @@ -2296,8 +2296,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetXyz path: Client/Model/Mesh/MeshData.cs startLine: 356 @@ -2328,8 +2328,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRgba path: Client/Model/Mesh/MeshData.cs startLine: 357 @@ -2356,8 +2356,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetRgba path: Client/Model/Mesh/MeshData.cs startLine: 358 @@ -2388,8 +2388,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetUv path: Client/Model/Mesh/MeshData.cs startLine: 359 @@ -2416,8 +2416,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetUv path: Client/Model/Mesh/MeshData.cs startLine: 360 @@ -2448,8 +2448,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetIndices path: Client/Model/Mesh/MeshData.cs startLine: 361 @@ -2476,8 +2476,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetIndices path: Client/Model/Mesh/MeshData.cs startLine: 362 @@ -2508,8 +2508,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMode path: Client/Model/Mesh/MeshData.cs startLine: 363 @@ -2536,8 +2536,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetMode path: Client/Model/Mesh/MeshData.cs startLine: 364 @@ -2565,8 +2565,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Translate path: Client/Model/Mesh/MeshData.cs startLine: 371 @@ -2599,8 +2599,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Translate path: Client/Model/Mesh/MeshData.cs startLine: 383 @@ -2642,8 +2642,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rotate path: Client/Model/Mesh/MeshData.cs startLine: 401 @@ -2688,8 +2688,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Scale path: Client/Model/Mesh/MeshData.cs startLine: 416 @@ -2734,8 +2734,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ModelTransform path: Client/Model/Mesh/MeshData.cs startLine: 435 @@ -2768,8 +2768,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MatrixTransform path: Client/Model/Mesh/MeshData.cs startLine: 461 @@ -2805,8 +2805,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MatrixTransform path: Client/Model/Mesh/MeshData.cs startLine: 472 @@ -2848,8 +2848,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MatrixTransform path: Client/Model/Mesh/MeshData.cs startLine: 477 @@ -2886,8 +2886,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MatrixTransform path: Client/Model/Mesh/MeshData.cs startLine: 538 @@ -2923,8 +2923,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Model/Mesh/MeshData.cs startLine: 627 @@ -2957,8 +2957,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Model/Mesh/MeshData.cs startLine: 648 @@ -3010,8 +3010,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Model/Mesh/MeshData.cs startLine: 684 @@ -3045,8 +3045,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithColorMaps path: Client/Model/Mesh/MeshData.cs startLine: 701 @@ -3076,8 +3076,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithXyzFaces path: Client/Model/Mesh/MeshData.cs startLine: 713 @@ -3107,8 +3107,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithRenderpasses path: Client/Model/Mesh/MeshData.cs startLine: 723 @@ -3138,8 +3138,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithNormals path: Client/Model/Mesh/MeshData.cs startLine: 734 @@ -3169,8 +3169,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddMeshData path: Client/Model/Mesh/MeshData.cs startLine: 748 @@ -3209,8 +3209,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddMeshData path: Client/Model/Mesh/MeshData.cs startLine: 759 @@ -3240,8 +3240,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: getTextureIndex path: Client/Model/Mesh/MeshData.cs startLine: 878 @@ -3274,8 +3274,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddMeshData path: Client/Model/Mesh/MeshData.cs startLine: 893 @@ -3306,8 +3306,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddMeshData path: Client/Model/Mesh/MeshData.cs startLine: 938 @@ -3344,8 +3344,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveIndex path: Client/Model/Mesh/MeshData.cs startLine: 1051 @@ -3372,8 +3372,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveVertex path: Client/Model/Mesh/MeshData.cs startLine: 1059 @@ -3400,8 +3400,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveVertices path: Client/Model/Mesh/MeshData.cs startLine: 1068 @@ -3435,8 +3435,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddVertexSkipTex path: Client/Model/Mesh/MeshData.cs startLine: 1082 @@ -3479,8 +3479,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddVertex path: Client/Model/Mesh/MeshData.cs startLine: 1120 @@ -3526,8 +3526,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddVertex path: Client/Model/Mesh/MeshData.cs startLine: 1152 @@ -3576,8 +3576,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddVertex path: Client/Model/Mesh/MeshData.cs startLine: 1167 @@ -3626,8 +3626,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddWithFlagsVertex path: Client/Model/Mesh/MeshData.cs startLine: 1209 @@ -3679,8 +3679,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddVertexWithFlags path: Client/Model/Mesh/MeshData.cs startLine: 1260 @@ -3732,8 +3732,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddVertexWithFlagsSkipColor path: Client/Model/Mesh/MeshData.cs startLine: 1284 @@ -3782,8 +3782,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddVertexWithFlagsSkipTexture path: Client/Model/Mesh/MeshData.cs startLine: 1312 @@ -3826,8 +3826,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetVertexFlags path: Client/Model/Mesh/MeshData.cs startLine: 1354 @@ -3860,8 +3860,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddNormal path: Client/Model/Mesh/MeshData.cs startLine: 1373 @@ -3901,8 +3901,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddNormal path: Client/Model/Mesh/MeshData.cs startLine: 1384 @@ -3933,8 +3933,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddColorMapIndex path: Client/Model/Mesh/MeshData.cs startLine: 1391 @@ -3967,8 +3967,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddRenderPass path: Client/Model/Mesh/MeshData.cs startLine: 1403 @@ -3999,8 +3999,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddXyzFace path: Client/Model/Mesh/MeshData.cs startLine: 1414 @@ -4031,8 +4031,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddTextureId path: Client/Model/Mesh/MeshData.cs startLine: 1424 @@ -4063,8 +4063,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddIndex path: Client/Model/Mesh/MeshData.cs startLine: 1434 @@ -4095,8 +4095,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddIndices path: Client/Model/Mesh/MeshData.cs startLine: 1453 @@ -4145,8 +4145,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddIndices path: Client/Model/Mesh/MeshData.cs startLine: 1471 @@ -4177,8 +4177,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GrowIndexBuffer path: Client/Model/Mesh/MeshData.cs startLine: 1488 @@ -4203,8 +4203,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GrowIndexBuffer path: Client/Model/Mesh/MeshData.cs startLine: 1502 @@ -4235,8 +4235,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GrowNormalsBuffer path: Client/Model/Mesh/MeshData.cs startLine: 1518 @@ -4261,8 +4261,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GrowVertexBuffer path: Client/Model/Mesh/MeshData.cs startLine: 1536 @@ -4289,8 +4289,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CompactBuffers path: Client/Model/Mesh/MeshData.cs startLine: 1597 @@ -4317,8 +4317,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Client/Model/Mesh/MeshData.cs startLine: 1638 @@ -4348,8 +4348,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DisposeBasicData path: Client/Model/Mesh/MeshData.cs startLine: 1693 @@ -4374,8 +4374,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CloneUsingRecycler path: Client/Model/Mesh/MeshData.cs startLine: 1789 @@ -4402,8 +4402,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/Model/Mesh/MeshData.cs startLine: 1810 @@ -4430,8 +4430,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EmptyClone path: Client/Model/Mesh/MeshData.cs startLine: 1827 @@ -4461,8 +4461,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clear path: Client/Model/Mesh/MeshData.cs startLine: 1916 @@ -4491,8 +4491,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SizeInBytes path: Client/Model/Mesh/MeshData.cs startLine: 1932 @@ -4519,8 +4519,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithTexPos path: Client/Model/Mesh/MeshData.cs startLine: 1956 @@ -4552,8 +4552,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetTexPos path: Client/Model/Mesh/MeshData.cs startLine: 1966 @@ -4583,8 +4583,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SplitByTextureId path: Client/Model/Mesh/MeshData.cs startLine: 1983 diff --git a/api/Vintagestory.API.Client.MeshDataPool.yml b/api/Vintagestory.API.Client.MeshDataPool.yml index 33f0eb3d..45ea799f 100644 --- a/api/Vintagestory.API.Client.MeshDataPool.yml +++ b/api/Vintagestory.API.Client.MeshDataPool.yml @@ -38,8 +38,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MeshDataPool path: Client/MeshPool/MeshDataPool.cs startLine: 10 @@ -75,8 +75,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxPartsPerPool path: Client/MeshPool/MeshDataPool.cs startLine: 15 @@ -104,8 +104,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VerticesPoolSize path: Client/MeshPool/MeshDataPool.cs startLine: 20 @@ -133,8 +133,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IndicesPoolSize path: Client/MeshPool/MeshDataPool.cs startLine: 25 @@ -162,8 +162,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: indicesStartsByte path: Client/MeshPool/MeshDataPool.cs startLine: 38 @@ -191,8 +191,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: indicesSizes path: Client/MeshPool/MeshDataPool.cs startLine: 43 @@ -220,8 +220,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: indicesGroupsCount path: Client/MeshPool/MeshDataPool.cs startLine: 48 @@ -249,8 +249,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: indicesPosition path: Client/MeshPool/MeshDataPool.cs startLine: 55 @@ -278,8 +278,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: verticesPosition path: Client/MeshPool/MeshDataPool.cs startLine: 60 @@ -307,8 +307,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentFragmentation path: Client/MeshPool/MeshDataPool.cs startLine: 65 @@ -336,8 +336,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UsedVertices path: Client/MeshPool/MeshDataPool.cs startLine: 70 @@ -365,8 +365,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderedTriangles path: Client/MeshPool/MeshDataPool.cs startLine: 78 @@ -394,8 +394,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AllocatedTris path: Client/MeshPool/MeshDataPool.cs startLine: 83 @@ -423,8 +423,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AllocateNewPool path: Client/MeshPool/MeshDataPool.cs startLine: 105 @@ -482,8 +482,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryAdd path: Client/MeshPool/MeshDataPool.cs startLine: 161 @@ -532,8 +532,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveLocation path: Client/MeshPool/MeshDataPool.cs startLine: 299 @@ -564,8 +564,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Draw path: Client/MeshPool/MeshDataPool.cs startLine: 336 @@ -602,8 +602,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FrustumCull path: Client/MeshPool/MeshDataPool.cs startLine: 347 @@ -637,8 +637,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetFullyVisible path: Client/MeshPool/MeshDataPool.cs startLine: 372 @@ -663,8 +663,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsEmpty path: Client/MeshPool/MeshDataPool.cs startLine: 399 @@ -694,8 +694,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/MeshPool/MeshDataPool.cs startLine: 408 @@ -726,8 +726,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CalcFragmentation path: Client/MeshPool/MeshDataPool.cs startLine: 416 @@ -754,8 +754,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetFragmentation path: Client/MeshPool/MeshDataPool.cs startLine: 442 @@ -785,8 +785,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderMesh path: Client/MeshPool/MeshDataPool.cs startLine: 447 diff --git a/api/Vintagestory.API.Client.MeshDataPoolManager.yml b/api/Vintagestory.API.Client.MeshDataPoolManager.yml index 7b285ea8..1d4d40ed 100644 --- a/api/Vintagestory.API.Client.MeshDataPoolManager.yml +++ b/api/Vintagestory.API.Client.MeshDataPoolManager.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPoolManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MeshDataPoolManager path: Client/MeshPool/MeshDataPoolManager.cs startLine: 11 @@ -56,8 +56,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPoolManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/MeshPool/MeshDataPoolManager.cs startLine: 43 @@ -118,8 +118,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPoolManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddModel path: Client/MeshPool/MeshDataPoolManager.cs startLine: 65 @@ -165,8 +165,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPoolManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Render path: Client/MeshPool/MeshDataPoolManager.cs startLine: 108 @@ -206,8 +206,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPoolManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetStats path: Client/MeshPool/MeshDataPoolManager.cs startLine: 193 diff --git a/api/Vintagestory.API.Client.MeshDataPoolMasterManager.yml b/api/Vintagestory.API.Client.MeshDataPoolMasterManager.yml index 2dcb75bb..ba0f09a6 100644 --- a/api/Vintagestory.API.Client.MeshDataPoolMasterManager.yml +++ b/api/Vintagestory.API.Client.MeshDataPoolMasterManager.yml @@ -26,8 +26,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPoolMasterManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MeshDataPoolMasterManager path: Client/MeshPool/MeshDataPoolMasterManager.cs startLine: 7 @@ -63,8 +63,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPoolMasterManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: currentDt path: Client/MeshPool/MeshDataPoolMasterManager.cs startLine: 11 @@ -90,8 +90,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPoolMasterManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: currentModelViewMatrix path: Client/MeshPool/MeshDataPoolMasterManager.cs startLine: 12 @@ -117,8 +117,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPoolMasterManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: shadowMVPMatrix path: Client/MeshPool/MeshDataPoolMasterManager.cs startLine: 13 @@ -144,8 +144,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPoolMasterManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DelayedPoolLocationRemoval path: Client/MeshPool/MeshDataPoolMasterManager.cs startLine: 19 @@ -173,8 +173,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPoolMasterManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/MeshPool/MeshDataPoolMasterManager.cs startLine: 29 @@ -208,8 +208,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPoolMasterManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveDataPoolLocations path: Client/MeshPool/MeshDataPoolMasterManager.cs startLine: 38 @@ -243,8 +243,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPoolMasterManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnFrame path: Client/MeshPool/MeshDataPoolMasterManager.cs startLine: 54 @@ -279,8 +279,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPoolMasterManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddModelDataPool path: Client/MeshPool/MeshDataPoolMasterManager.cs startLine: 98 @@ -311,8 +311,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPoolMasterManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DisposeAllPools path: Client/MeshPool/MeshDataPoolMasterManager.cs startLine: 108 @@ -343,8 +343,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPoolMasterManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CalcFragmentation path: Client/MeshPool/MeshDataPoolMasterManager.cs startLine: 120 @@ -374,8 +374,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPoolMasterManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: QuantityModelDataPools path: Client/MeshPool/MeshDataPoolMasterManager.cs startLine: 137 diff --git a/api/Vintagestory.API.Client.MeshDataRecycler.yml b/api/Vintagestory.API.Client.MeshDataRecycler.yml index dbcff133..78e48741 100644 --- a/api/Vintagestory.API.Client.MeshDataRecycler.yml +++ b/api/Vintagestory.API.Client.MeshDataRecycler.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataRecycler.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MeshDataRecycler path: Client/MeshPool/MeshDataRecycler.cs startLine: 48 @@ -59,8 +59,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataRecycler.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinimumSizeForRecycling path: Client/MeshPool/MeshDataRecycler.cs startLine: 50 @@ -86,8 +86,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataRecycler.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TTL path: Client/MeshPool/MeshDataRecycler.cs startLine: 51 @@ -113,8 +113,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataRecycler.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/MeshPool/MeshDataRecycler.cs startLine: 65 @@ -145,8 +145,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataRecycler.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetOrCreateMesh path: Client/MeshPool/MeshDataRecycler.cs startLine: 81 @@ -183,8 +183,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataRecycler.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DoRecycling path: Client/MeshPool/MeshDataRecycler.cs startLine: 116 @@ -211,8 +211,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataRecycler.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Recycle path: Client/MeshPool/MeshDataRecycler.cs startLine: 147 @@ -243,8 +243,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataRecycler.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/MeshPool/MeshDataRecycler.cs startLine: 158 diff --git a/api/Vintagestory.API.Client.MeshRef.yml b/api/Vintagestory.API.Client.MeshRef.yml index 0e8b9564..da45b1b7 100644 --- a/api/Vintagestory.API.Client.MeshRef.yml +++ b/api/Vintagestory.API.Client.MeshRef.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Client/API/MeshRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MeshRef path: Client/API/MeshRef.cs startLine: 33 @@ -58,8 +58,8 @@ items: source: remote: path: VintagestoryApi/Client/API/MeshRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MultidrawByTextureId path: Client/API/MeshRef.cs startLine: 35 @@ -87,8 +87,8 @@ items: source: remote: path: VintagestoryApi/Client/API/MeshRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Initialized path: Client/API/MeshRef.cs startLine: 37 @@ -116,8 +116,8 @@ items: source: remote: path: VintagestoryApi/Client/API/MeshRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Disposed path: Client/API/MeshRef.cs startLine: 42 @@ -147,8 +147,8 @@ items: source: remote: path: VintagestoryApi/Client/API/MeshRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/API/MeshRef.cs startLine: 47 diff --git a/api/Vintagestory.API.Client.MeshUtil.yml b/api/Vintagestory.API.Client.MeshUtil.yml index 8d451bb2..0bb8fc97 100644 --- a/api/Vintagestory.API.Client.MeshUtil.yml +++ b/api/Vintagestory.API.Client.MeshUtil.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MeshUtil path: Client/Model/Mesh/MeshUtil.cs startLine: 5 @@ -54,8 +54,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetWindFlag path: Client/Model/Mesh/MeshUtil.cs startLine: 13 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClearWindFlags path: Client/Model/Mesh/MeshUtil.cs startLine: 31 @@ -126,8 +126,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/MeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToggleWindModeSetWindData path: Client/Model/Mesh/MeshUtil.cs startLine: 40 diff --git a/api/Vintagestory.API.Client.ModelCubeUtilExt.EnumShadeMode.yml b/api/Vintagestory.API.Client.ModelCubeUtilExt.EnumShadeMode.yml index 9c3d3e53..5a36c411 100644 --- a/api/Vintagestory.API.Client.ModelCubeUtilExt.EnumShadeMode.yml +++ b/api/Vintagestory.API.Client.ModelCubeUtilExt.EnumShadeMode.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/ModelCubeUtilExt.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumShadeMode path: Client/Render/ModelCubeUtilExt.cs startLine: 10 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/ModelCubeUtilExt.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Off path: Client/Render/ModelCubeUtilExt.cs startLine: 12 @@ -69,8 +69,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/ModelCubeUtilExt.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: On path: Client/Render/ModelCubeUtilExt.cs startLine: 13 @@ -95,8 +95,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/ModelCubeUtilExt.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Gradient path: Client/Render/ModelCubeUtilExt.cs startLine: 14 diff --git a/api/Vintagestory.API.Client.ModelCubeUtilExt.yml b/api/Vintagestory.API.Client.ModelCubeUtilExt.yml index 25aaa54d..181f57d6 100644 --- a/api/Vintagestory.API.Client.ModelCubeUtilExt.yml +++ b/api/Vintagestory.API.Client.ModelCubeUtilExt.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/ModelCubeUtilExt.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ModelCubeUtilExt path: Client/Render/ModelCubeUtilExt.cs startLine: 7 @@ -71,8 +71,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/ModelCubeUtilExt.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddFace path: Client/Render/ModelCubeUtilExt.cs startLine: 29 @@ -131,8 +131,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/ModelCubeUtilExt.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddFaceSkipTex path: Client/Render/ModelCubeUtilExt.cs startLine: 134 diff --git a/api/Vintagestory.API.Client.ModelDataPoolLocation.yml b/api/Vintagestory.API.Client.ModelDataPoolLocation.yml index 09a3d1be..0ff20661 100644 --- a/api/Vintagestory.API.Client.ModelDataPoolLocation.yml +++ b/api/Vintagestory.API.Client.ModelDataPoolLocation.yml @@ -28,8 +28,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ModelDataPoolLocation path: Client/MeshPool/MeshDataPool.cs startLine: 457 @@ -65,8 +65,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VisibleBufIndex path: Client/MeshPool/MeshDataPool.cs startLine: 459 @@ -92,8 +92,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PoolId path: Client/MeshPool/MeshDataPool.cs startLine: 464 @@ -121,8 +121,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IndicesStart path: Client/MeshPool/MeshDataPool.cs startLine: 469 @@ -150,8 +150,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IndicesEnd path: Client/MeshPool/MeshDataPool.cs startLine: 474 @@ -179,8 +179,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VerticesStart path: Client/MeshPool/MeshDataPool.cs startLine: 479 @@ -208,8 +208,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VerticesEnd path: Client/MeshPool/MeshDataPool.cs startLine: 484 @@ -237,8 +237,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FrustumCullSphere path: Client/MeshPool/MeshDataPool.cs startLine: 489 @@ -266,8 +266,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FrustumVisible path: Client/MeshPool/MeshDataPool.cs startLine: 494 @@ -295,8 +295,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CullVisible path: Client/MeshPool/MeshDataPool.cs startLine: 496 @@ -322,8 +322,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LodLevel path: Client/MeshPool/MeshDataPool.cs startLine: 498 @@ -349,8 +349,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Hide path: Client/MeshPool/MeshDataPool.cs startLine: 500 @@ -376,8 +376,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TransitionCounter path: Client/MeshPool/MeshDataPool.cs startLine: 505 @@ -405,8 +405,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsVisible path: Client/MeshPool/MeshDataPool.cs startLine: 514 diff --git a/api/Vintagestory.API.Client.MouseButtonState.yml b/api/Vintagestory.API.Client.MouseButtonState.yml index c6fec9c2..e5a5d208 100644 --- a/api/Vintagestory.API.Client.MouseButtonState.yml +++ b/api/Vintagestory.API.Client.MouseButtonState.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IInputAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MouseButtonState path: Client/API/IInputAPI.cs startLine: 5 @@ -54,8 +54,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IInputAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Left path: Client/API/IInputAPI.cs startLine: 7 @@ -81,8 +81,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IInputAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Middle path: Client/API/IInputAPI.cs startLine: 8 @@ -108,8 +108,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IInputAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Right path: Client/API/IInputAPI.cs startLine: 9 @@ -135,8 +135,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IInputAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clear path: Client/API/IInputAPI.cs startLine: 11 diff --git a/api/Vintagestory.API.Client.MouseEvent.yml b/api/Vintagestory.API.Client.MouseEvent.yml index ddc3c4bc..7116578c 100644 --- a/api/Vintagestory.API.Client.MouseEvent.yml +++ b/api/Vintagestory.API.Client.MouseEvent.yml @@ -28,8 +28,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/MouseEvent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MouseEvent path: Client/Input/MouseEvent.cs startLine: 7 @@ -65,8 +65,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/MouseEvent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X path: Client/Input/MouseEvent.cs startLine: 12 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/MouseEvent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y path: Client/Input/MouseEvent.cs startLine: 17 @@ -127,8 +127,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/MouseEvent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DeltaX path: Client/Input/MouseEvent.cs startLine: 22 @@ -158,8 +158,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/MouseEvent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DeltaY path: Client/Input/MouseEvent.cs startLine: 27 @@ -189,8 +189,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/MouseEvent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Button path: Client/Input/MouseEvent.cs startLine: 32 @@ -220,8 +220,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/MouseEvent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Modifiers path: Client/Input/MouseEvent.cs startLine: 34 @@ -249,8 +249,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/MouseEvent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Handled path: Client/Input/MouseEvent.cs startLine: 39 @@ -280,8 +280,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/MouseEvent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Input/MouseEvent.cs startLine: 51 @@ -324,8 +324,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/MouseEvent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Input/MouseEvent.cs startLine: 56 @@ -364,8 +364,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/MouseEvent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Input/MouseEvent.cs startLine: 59 @@ -402,8 +402,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/MouseEvent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Input/MouseEvent.cs startLine: 62 @@ -440,8 +440,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/MouseEvent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Input/MouseEvent.cs startLine: 65 @@ -476,8 +476,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/MouseEvent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Input/MouseEvent.cs startLine: 68 diff --git a/api/Vintagestory.API.Client.MouseEventDelegate.yml b/api/Vintagestory.API.Client.MouseEventDelegate.yml index 5e17219f..a439c0d6 100644 --- a/api/Vintagestory.API.Client.MouseEventDelegate.yml +++ b/api/Vintagestory.API.Client.MouseEventDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MouseEventDelegate path: Client/API/IClientEventAPI.cs startLine: 6 diff --git a/api/Vintagestory.API.Client.MouseWheelEventArgs.yml b/api/Vintagestory.API.Client.MouseWheelEventArgs.yml index e368afc8..1302d04a 100644 --- a/api/Vintagestory.API.Client.MouseWheelEventArgs.yml +++ b/api/Vintagestory.API.Client.MouseWheelEventArgs.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/MouseEvent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MouseWheelEventArgs path: Client/Input/MouseEvent.cs startLine: 75 @@ -58,8 +58,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/MouseEvent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: delta path: Client/Input/MouseEvent.cs startLine: 80 @@ -87,8 +87,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/MouseEvent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: deltaPrecise path: Client/Input/MouseEvent.cs startLine: 85 @@ -116,8 +116,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/MouseEvent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: value path: Client/Input/MouseEvent.cs startLine: 90 @@ -145,8 +145,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/MouseEvent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: valuePrecise path: Client/Input/MouseEvent.cs startLine: 95 @@ -174,8 +174,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/MouseEvent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsHandled path: Client/Input/MouseEvent.cs startLine: 100 @@ -205,8 +205,8 @@ items: source: remote: path: VintagestoryApi/Client/Input/MouseEvent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetHandled path: Client/Input/MouseEvent.cs startLine: 106 diff --git a/api/Vintagestory.API.Client.MultiTextureMeshRef.yml b/api/Vintagestory.API.Client.MultiTextureMeshRef.yml index 13733a3c..b30ddd43 100644 --- a/api/Vintagestory.API.Client.MultiTextureMeshRef.yml +++ b/api/Vintagestory.API.Client.MultiTextureMeshRef.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Client/API/MeshRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MultiTextureMeshRef path: Client/API/MeshRef.cs startLine: 4 @@ -58,8 +58,8 @@ items: source: remote: path: VintagestoryApi/Client/API/MeshRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: meshrefs path: Client/API/MeshRef.cs startLine: 6 @@ -85,8 +85,8 @@ items: source: remote: path: VintagestoryApi/Client/API/MeshRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: textureids path: Client/API/MeshRef.cs startLine: 7 @@ -112,8 +112,8 @@ items: source: remote: path: VintagestoryApi/Client/API/MeshRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Disposed path: Client/API/MeshRef.cs startLine: 11 @@ -141,8 +141,8 @@ items: source: remote: path: VintagestoryApi/Client/API/MeshRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/API/MeshRef.cs startLine: 13 @@ -175,8 +175,8 @@ items: source: remote: path: VintagestoryApi/Client/API/MeshRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Initialized path: Client/API/MeshRef.cs startLine: 19 @@ -204,8 +204,8 @@ items: source: remote: path: VintagestoryApi/Client/API/MeshRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/API/MeshRef.cs startLine: 21 diff --git a/api/Vintagestory.API.Client.MusicTrack.yml b/api/Vintagestory.API.Client.MusicTrack.yml index 76621fb7..9648f384 100644 --- a/api/Vintagestory.API.Client.MusicTrack.yml +++ b/api/Vintagestory.API.Client.MusicTrack.yml @@ -33,8 +33,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MusicTrack path: Client/Audio/MusicTrack.cs startLine: 11 @@ -72,8 +72,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Location path: Client/Audio/MusicTrack.cs startLine: 13 @@ -99,8 +99,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: loading path: Client/Audio/MusicTrack.cs startLine: 18 @@ -128,8 +128,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ManualDispose path: Client/Audio/MusicTrack.cs startLine: 20 @@ -155,8 +155,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sound path: Client/Audio/MusicTrack.cs startLine: 25 @@ -184,8 +184,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsActive path: Client/Audio/MusicTrack.cs startLine: 30 @@ -217,8 +217,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Priority path: Client/Audio/MusicTrack.cs startLine: 41 @@ -250,8 +250,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Name path: Client/Audio/MusicTrack.cs startLine: 46 @@ -283,8 +283,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Stop path: Client/Audio/MusicTrack.cs startLine: 59 @@ -311,8 +311,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Initialize path: Client/Audio/MusicTrack.cs startLine: 73 @@ -351,8 +351,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldPlay path: Client/Audio/MusicTrack.cs startLine: 88 @@ -394,8 +394,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeginPlay path: Client/Audio/MusicTrack.cs startLine: 98 @@ -428,8 +428,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ContinuePlay path: Client/Audio/MusicTrack.cs startLine: 118 @@ -471,8 +471,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FadeOut path: Client/Audio/MusicTrack.cs startLine: 135 @@ -511,8 +511,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UpdateVolume path: Client/Audio/MusicTrack.cs startLine: 154 @@ -541,8 +541,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FastForward path: Client/Audio/MusicTrack.cs startLine: 162 @@ -576,8 +576,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeginSort path: Client/Audio/MusicTrack.cs startLine: 167 @@ -606,8 +606,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PositionString path: Client/Audio/MusicTrack.cs startLine: 172 @@ -638,8 +638,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartPriority path: Client/Audio/MusicTrack.cs startLine: 180 diff --git a/api/Vintagestory.API.Client.MusicTrackPart.yml b/api/Vintagestory.API.Client.MusicTrackPart.yml index 2680cbf4..56307d77 100644 --- a/api/Vintagestory.API.Client.MusicTrackPart.yml +++ b/api/Vintagestory.API.Client.MusicTrackPart.yml @@ -30,8 +30,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrackPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MusicTrackPart path: Client/Audio/MusicTrackPart.cs startLine: 8 @@ -77,8 +77,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrackPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinSuitability path: Client/Audio/MusicTrackPart.cs startLine: 15 @@ -116,8 +116,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrackPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxSuitability path: Client/Audio/MusicTrackPart.cs startLine: 21 @@ -155,8 +155,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrackPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinVolumne path: Client/Audio/MusicTrackPart.cs startLine: 27 @@ -194,8 +194,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrackPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxVolumne path: Client/Audio/MusicTrackPart.cs startLine: 33 @@ -233,8 +233,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrackPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PosY path: Client/Audio/MusicTrackPart.cs startLine: 39 @@ -272,8 +272,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrackPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sunlight path: Client/Audio/MusicTrackPart.cs startLine: 42 @@ -309,8 +309,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrackPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Files path: Client/Audio/MusicTrackPart.cs startLine: 50 @@ -348,8 +348,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrackPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sound path: Client/Audio/MusicTrackPart.cs startLine: 55 @@ -377,8 +377,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrackPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartedMs path: Client/Audio/MusicTrackPart.cs startLine: 60 @@ -406,8 +406,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrackPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Loading path: Client/Audio/MusicTrackPart.cs startLine: 65 @@ -435,8 +435,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrackPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsPlaying path: Client/Audio/MusicTrackPart.cs startLine: 72 @@ -466,8 +466,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrackPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Applicable path: Client/Audio/MusicTrackPart.cs startLine: 83 @@ -504,8 +504,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrackPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentVolume path: Client/Audio/MusicTrackPart.cs startLine: 94 @@ -542,8 +542,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrackPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentSuitability path: Client/Audio/MusicTrackPart.cs startLine: 116 @@ -580,8 +580,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/MusicTrackPart.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExpandFiles path: Client/Audio/MusicTrackPart.cs startLine: 149 diff --git a/api/Vintagestory.API.Client.NetworkServerMessageHandler-1.yml b/api/Vintagestory.API.Client.NetworkServerMessageHandler-1.yml index fb7838ce..b14d07f4 100644 --- a/api/Vintagestory.API.Client.NetworkServerMessageHandler-1.yml +++ b/api/Vintagestory.API.Client.NetworkServerMessageHandler-1.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientNetworkChannel.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NetworkServerMessageHandler path: Client/API/IClientNetworkChannel.cs startLine: 31 diff --git a/api/Vintagestory.API.Client.NormalUtil.yml b/api/Vintagestory.API.Client.NormalUtil.yml index ca54d851..6df85789 100644 --- a/api/Vintagestory.API.Client.NormalUtil.yml +++ b/api/Vintagestory.API.Client.NormalUtil.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/NormalUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NormalUtil path: Client/Model/Mesh/NormalUtil.cs startLine: 5 @@ -58,8 +58,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/NormalUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NegBit path: Client/Model/Mesh/NormalUtil.cs startLine: 7 @@ -85,8 +85,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/NormalUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: tenBitMask path: Client/Model/Mesh/NormalUtil.cs startLine: 9 @@ -112,8 +112,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/NormalUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: nineBitMask path: Client/Model/Mesh/NormalUtil.cs startLine: 10 @@ -139,8 +139,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/NormalUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: tenthBitMask path: Client/Model/Mesh/NormalUtil.cs startLine: 12 @@ -166,8 +166,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/NormalUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromPackedNormal path: Client/Model/Mesh/NormalUtil.cs startLine: 14 @@ -200,8 +200,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/NormalUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromPackedNormal path: Client/Model/Mesh/NormalUtil.cs startLine: 30 @@ -234,8 +234,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/NormalUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PackNormal path: Client/Model/Mesh/NormalUtil.cs startLine: 46 @@ -265,8 +265,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/NormalUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PackNormal path: Client/Model/Mesh/NormalUtil.cs startLine: 65 diff --git a/api/Vintagestory.API.Client.OnGamePauseResume.yml b/api/Vintagestory.API.Client.OnGamePauseResume.yml index 6678792b..3750950e 100644 --- a/api/Vintagestory.API.Client.OnGamePauseResume.yml +++ b/api/Vintagestory.API.Client.OnGamePauseResume.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnGamePauseResume path: Client/API/IClientEventAPI.cs startLine: 17 diff --git a/api/Vintagestory.API.Client.OnHotKeyDelegate.yml b/api/Vintagestory.API.Client.OnHotKeyDelegate.yml index 1195aeaf..446b83f8 100644 --- a/api/Vintagestory.API.Client.OnHotKeyDelegate.yml +++ b/api/Vintagestory.API.Client.OnHotKeyDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IInputAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnHotKeyDelegate path: Client/API/IInputAPI.cs startLine: 19 diff --git a/api/Vintagestory.API.Client.OnRequireCell-1.yml b/api/Vintagestory.API.Client.OnRequireCell-1.yml index 8bcab4cc..1dd6b744 100644 --- a/api/Vintagestory.API.Client.OnRequireCell-1.yml +++ b/api/Vintagestory.API.Client.OnRequireCell-1.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnRequireCell path: Client/UI/Elements/Impl/Interactive/GuiElementCellList.cs startLine: 38 diff --git a/api/Vintagestory.API.Client.OnSettingsChanged-1.yml b/api/Vintagestory.API.Client.OnSettingsChanged-1.yml index 5297365a..98cdff62 100644 --- a/api/Vintagestory.API.Client.OnSettingsChanged-1.yml +++ b/api/Vintagestory.API.Client.OnSettingsChanged-1.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ISettings.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnSettingsChanged path: Client/API/ISettings.cs startLine: 4 diff --git a/api/Vintagestory.API.Client.OnValueGetDelegate.yml b/api/Vintagestory.API.Client.OnValueGetDelegate.yml index 30de5647..074223c8 100644 --- a/api/Vintagestory.API.Client.OnValueGetDelegate.yml +++ b/api/Vintagestory.API.Client.OnValueGetDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnValueGetDelegate path: Client/UI/JsonDialog.cs startLine: 6 diff --git a/api/Vintagestory.API.Client.OnValueSetDelegate.yml b/api/Vintagestory.API.Client.OnValueSetDelegate.yml index f422bf08..96688d36 100644 --- a/api/Vintagestory.API.Client.OnValueSetDelegate.yml +++ b/api/Vintagestory.API.Client.OnValueSetDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/JsonDialog.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnValueSetDelegate path: Client/UI/JsonDialog.cs startLine: 5 diff --git a/api/Vintagestory.API.Client.ParticlePhysics.yml b/api/Vintagestory.API.Client.ParticlePhysics.yml index a1316c51..31f3e618 100644 --- a/api/Vintagestory.API.Client.ParticlePhysics.yml +++ b/api/Vintagestory.API.Client.ParticlePhysics.yml @@ -24,8 +24,8 @@ items: source: remote: path: VintagestoryApi/Client/ParticlePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParticlePhysics path: Client/ParticlePhysics.cs startLine: 31 @@ -59,8 +59,8 @@ items: source: remote: path: VintagestoryApi/Client/ParticlePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockAccess path: Client/ParticlePhysics.cs startLine: 33 @@ -86,8 +86,8 @@ items: source: remote: path: VintagestoryApi/Client/ParticlePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PhysicsTickTime path: Client/ParticlePhysics.cs startLine: 37 @@ -113,8 +113,8 @@ items: source: remote: path: VintagestoryApi/Client/ParticlePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AsyncSpawnTime path: Client/ParticlePhysics.cs startLine: 38 @@ -140,8 +140,8 @@ items: source: remote: path: VintagestoryApi/Client/ParticlePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/ParticlePhysics.cs startLine: 44 @@ -172,8 +172,8 @@ items: source: remote: path: VintagestoryApi/Client/ParticlePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CollisionStrength path: Client/ParticlePhysics.cs startLine: 49 @@ -212,8 +212,8 @@ items: source: remote: path: VintagestoryApi/Client/ParticlePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CollisionBoxList path: Client/ParticlePhysics.cs startLine: 60 @@ -239,8 +239,8 @@ items: source: remote: path: VintagestoryApi/Client/ParticlePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HandleBoyancy path: Client/ParticlePhysics.cs startLine: 62 @@ -281,8 +281,8 @@ items: source: remote: path: VintagestoryApi/Client/ParticlePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MotionCap path: Client/ParticlePhysics.cs startLine: 121 @@ -308,8 +308,8 @@ items: source: remote: path: VintagestoryApi/Client/ParticlePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UpdateMotion path: Client/ParticlePhysics.cs startLine: 132 diff --git a/api/Vintagestory.API.Client.PerceptionEffect.yml b/api/Vintagestory.API.Client.PerceptionEffect.yml index 824c72e6..8475712c 100644 --- a/api/Vintagestory.API.Client.PerceptionEffect.yml +++ b/api/Vintagestory.API.Client.PerceptionEffect.yml @@ -27,8 +27,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/PerceptionEffect.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PerceptionEffect path: Client/Render/PerceptionEffects/PerceptionEffect.cs startLine: 4 @@ -66,8 +66,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/PerceptionEffect.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Client/Render/PerceptionEffects/PerceptionEffect.cs startLine: 6 @@ -93,8 +93,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/PerceptionEffect.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PerceptionEffectId path: Client/Render/PerceptionEffects/PerceptionEffect.cs startLine: 7 @@ -120,8 +120,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/PerceptionEffect.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Intensity path: Client/Render/PerceptionEffects/PerceptionEffect.cs startLine: 8 @@ -147,8 +147,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/PerceptionEffect.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DurationHours path: Client/Render/PerceptionEffects/PerceptionEffect.cs startLine: 10 @@ -174,8 +174,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/PerceptionEffect.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: capi path: Client/Render/PerceptionEffects/PerceptionEffect.cs startLine: 12 @@ -201,8 +201,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/PerceptionEffect.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Render/PerceptionEffects/PerceptionEffect.cs startLine: 14 @@ -233,8 +233,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/PerceptionEffect.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBeforeGameRender path: Client/Render/PerceptionEffects/PerceptionEffect.cs startLine: 19 @@ -265,8 +265,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/PerceptionEffect.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnOwnPlayerDataReceived path: Client/Render/PerceptionEffects/PerceptionEffect.cs startLine: 28 @@ -294,8 +294,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/PerceptionEffect.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ApplyToFpHand path: Client/Render/PerceptionEffects/PerceptionEffect.cs startLine: 33 @@ -323,8 +323,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/PerceptionEffect.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ApplyToTpPlayer path: Client/Render/PerceptionEffects/PerceptionEffect.cs startLine: 38 @@ -359,8 +359,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/PerceptionEffect.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NowDisabled path: Client/Render/PerceptionEffects/PerceptionEffect.cs startLine: 43 @@ -385,8 +385,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/PerceptionEffect.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NowActive path: Client/Render/PerceptionEffects/PerceptionEffect.cs startLine: 48 diff --git a/api/Vintagestory.API.Client.PerceptionEffects.yml b/api/Vintagestory.API.Client.PerceptionEffects.yml index ae6fa4b9..42c6e242 100644 --- a/api/Vintagestory.API.Client.PerceptionEffects.yml +++ b/api/Vintagestory.API.Client.PerceptionEffects.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/PerceptionEffects.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PerceptionEffects path: Client/Render/PerceptionEffects/PerceptionEffects.cs startLine: 5 @@ -58,8 +58,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/PerceptionEffects.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Render/PerceptionEffects/PerceptionEffects.cs startLine: 13 @@ -90,8 +90,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/PerceptionEffects.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterPerceptionEffect path: Client/Render/PerceptionEffects/PerceptionEffects.cs startLine: 22 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/PerceptionEffects.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisteredEffects path: Client/Render/PerceptionEffects/PerceptionEffects.cs startLine: 30 @@ -153,8 +153,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/PerceptionEffects.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TriggerEffect path: Client/Render/PerceptionEffects/PerceptionEffects.cs startLine: 32 @@ -189,8 +189,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/PerceptionEffects.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBeforeGameRender path: Client/Render/PerceptionEffects/PerceptionEffects.cs startLine: 56 @@ -221,8 +221,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/PerceptionEffects.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnOwnPlayerDataReceived path: Client/Render/PerceptionEffects/PerceptionEffects.cs startLine: 65 @@ -250,8 +250,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/PerceptionEffects.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ApplyToFpHand path: Client/Render/PerceptionEffects/PerceptionEffects.cs startLine: 78 @@ -279,8 +279,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/PerceptionEffects/PerceptionEffects.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ApplyToTpPlayer path: Client/Render/PerceptionEffects/PerceptionEffects.cs startLine: 86 diff --git a/api/Vintagestory.API.Client.Plane.yml b/api/Vintagestory.API.Client.Plane.yml index e4c6c9a0..90b6d1fb 100644 --- a/api/Vintagestory.API.Client.Plane.yml +++ b/api/Vintagestory.API.Client.Plane.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FrustumCulling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Plane path: Client/Render/FrustumCulling.cs startLine: 29 @@ -54,8 +54,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FrustumCulling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: normalX path: Client/Render/FrustumCulling.cs startLine: 31 @@ -81,8 +81,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FrustumCulling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: normalY path: Client/Render/FrustumCulling.cs startLine: 32 @@ -108,8 +108,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FrustumCulling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: normalZ path: Client/Render/FrustumCulling.cs startLine: 33 @@ -135,8 +135,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FrustumCulling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: D path: Client/Render/FrustumCulling.cs startLine: 34 @@ -162,8 +162,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FrustumCulling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Render/FrustumCulling.cs startLine: 40 @@ -202,8 +202,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FrustumCulling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: distanceOfPoint path: Client/Render/FrustumCulling.cs startLine: 49 @@ -240,8 +240,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FrustumCulling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AABBisOutside path: Client/Render/FrustumCulling.cs startLine: 54 diff --git a/api/Vintagestory.API.Client.PlayerEventDelegate.yml b/api/Vintagestory.API.Client.PlayerEventDelegate.yml index 7ff27e16..2ab97920 100644 --- a/api/Vintagestory.API.Client.PlayerEventDelegate.yml +++ b/api/Vintagestory.API.Client.PlayerEventDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerEventDelegate path: Client/API/IClientEventAPI.cs startLine: 8 diff --git a/api/Vintagestory.API.Client.QuadMeshUtil.yml b/api/Vintagestory.API.Client.QuadMeshUtil.yml index 0810efbe..08f5c57f 100644 --- a/api/Vintagestory.API.Client.QuadMeshUtil.yml +++ b/api/Vintagestory.API.Client.QuadMeshUtil.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/QuadMeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: QuadMeshUtil path: Client/Model/Mesh/QuadMeshUtil.cs startLine: 5 @@ -57,8 +57,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/QuadMeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetQuad path: Client/Model/Mesh/QuadMeshUtil.cs startLine: 31 @@ -91,8 +91,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/QuadMeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCustomQuadModelData path: Client/Model/Mesh/QuadMeshUtil.cs startLine: 65 @@ -141,8 +141,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/QuadMeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCustomQuad path: Client/Model/Mesh/QuadMeshUtil.cs startLine: 102 @@ -203,8 +203,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/QuadMeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCustomQuadHorizontal path: Client/Model/Mesh/QuadMeshUtil.cs startLine: 167 @@ -265,8 +265,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Mesh/QuadMeshUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCustomQuadModelData path: Client/Model/Mesh/QuadMeshUtil.cs startLine: 231 diff --git a/api/Vintagestory.API.Client.RainMusicTrack.yml b/api/Vintagestory.API.Client.RainMusicTrack.yml index 8f5d3825..8eb25be3 100644 --- a/api/Vintagestory.API.Client.RainMusicTrack.yml +++ b/api/Vintagestory.API.Client.RainMusicTrack.yml @@ -30,8 +30,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/RainMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RainMusicTrack path: Client/Audio/RainMusicTrack.cs startLine: 10 @@ -69,8 +69,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/RainMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsActive path: Client/Audio/RainMusicTrack.cs startLine: 12 @@ -102,8 +102,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/RainMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Name path: Client/Audio/RainMusicTrack.cs startLine: 20 @@ -135,8 +135,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/RainMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Priority path: Client/Audio/RainMusicTrack.cs startLine: 28 @@ -168,8 +168,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/RainMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PositionString path: Client/Audio/RainMusicTrack.cs startLine: 36 @@ -200,8 +200,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/RainMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartPriority path: Client/Audio/RainMusicTrack.cs startLine: 38 @@ -233,8 +233,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/RainMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FadeOut path: Client/Audio/RainMusicTrack.cs startLine: 40 @@ -267,8 +267,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/RainMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Initialize path: Client/Audio/RainMusicTrack.cs startLine: 45 @@ -307,8 +307,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/RainMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldPlay path: Client/Audio/RainMusicTrack.cs startLine: 51 @@ -350,8 +350,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/RainMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeginPlay path: Client/Audio/RainMusicTrack.cs startLine: 57 @@ -384,8 +384,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/RainMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ContinuePlay path: Client/Audio/RainMusicTrack.cs startLine: 62 @@ -427,8 +427,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/RainMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Stop path: Client/Audio/RainMusicTrack.cs startLine: 85 @@ -453,8 +453,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/RainMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UpdateVolume path: Client/Audio/RainMusicTrack.cs startLine: 90 @@ -483,8 +483,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/RainMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FadeOut path: Client/Audio/RainMusicTrack.cs startLine: 95 @@ -526,8 +526,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/RainMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FastForward path: Client/Audio/RainMusicTrack.cs startLine: 100 @@ -561,8 +561,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/RainMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeginSort path: Client/Audio/RainMusicTrack.cs startLine: 105 diff --git a/api/Vintagestory.API.Client.RawTexture.yml b/api/Vintagestory.API.Client.RawTexture.yml index cd4e7013..5e6019a9 100644 --- a/api/Vintagestory.API.Client.RawTexture.yml +++ b/api/Vintagestory.API.Client.RawTexture.yml @@ -24,8 +24,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RawTexture path: Client/Render/FramebufferData.cs startLine: 39 @@ -59,8 +59,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinFilter path: Client/Render/FramebufferData.cs startLine: 41 @@ -86,8 +86,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MagFilter path: Client/Render/FramebufferData.cs startLine: 42 @@ -113,8 +113,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WrapS path: Client/Render/FramebufferData.cs startLine: 44 @@ -140,8 +140,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WrapT path: Client/Render/FramebufferData.cs startLine: 45 @@ -167,8 +167,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PixelInternalFormat path: Client/Render/FramebufferData.cs startLine: 47 @@ -194,8 +194,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PixelFormat path: Client/Render/FramebufferData.cs startLine: 48 @@ -221,8 +221,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Width path: Client/Render/FramebufferData.cs startLine: 50 @@ -248,8 +248,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Height path: Client/Render/FramebufferData.cs startLine: 51 @@ -275,8 +275,8 @@ items: source: remote: path: VintagestoryApi/Client/Render/FramebufferData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TextureId path: Client/Render/FramebufferData.cs startLine: 53 diff --git a/api/Vintagestory.API.Client.RenderDelegateWithBounds.yml b/api/Vintagestory.API.Client.RenderDelegateWithBounds.yml index 0abbf8d7..e7b21d7b 100644 --- a/api/Vintagestory.API.Client.RenderDelegateWithBounds.yml +++ b/api/Vintagestory.API.Client.RenderDelegateWithBounds.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/GuiElementCustomRender.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderDelegateWithBounds path: Client/UI/Elements/Impl/Misc/GuiElementCustomRender.cs startLine: 4 diff --git a/api/Vintagestory.API.Client.RenderSkillItemDelegate.yml b/api/Vintagestory.API.Client.RenderSkillItemDelegate.yml index 1ba61df6..c2d6f956 100644 --- a/api/Vintagestory.API.Client.RenderSkillItemDelegate.yml +++ b/api/Vintagestory.API.Client.RenderSkillItemDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/SkillItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderSkillItemDelegate path: Client/UI/Elements/Impl/Misc/SkillItem.cs startLine: 7 diff --git a/api/Vintagestory.API.Client.RichTextComponent.yml b/api/Vintagestory.API.Client.RichTextComponent.yml index 9a5d2cd7..a4ebfa3f 100644 --- a/api/Vintagestory.API.Client.RichTextComponent.yml +++ b/api/Vintagestory.API.Client.RichTextComponent.yml @@ -26,8 +26,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RichTextComponent path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponent.cs startLine: 5 @@ -81,8 +81,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: textUtil path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponent.cs startLine: 7 @@ -108,8 +108,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: linebreak path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponent.cs startLine: 8 @@ -135,8 +135,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DisplayText path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponent.cs startLine: 10 @@ -162,8 +162,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Font path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponent.cs startLine: 11 @@ -189,8 +189,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Lines path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponent.cs startLine: 12 @@ -216,8 +216,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponent.cs startLine: 15 @@ -252,8 +252,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: init path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponent.cs startLine: 24 @@ -278,8 +278,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponent.cs startLine: 75 @@ -314,8 +314,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponent.cs startLine: 97 @@ -359,8 +359,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CalcBounds path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponent.cs startLine: 116 @@ -410,8 +410,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetFontOrientOffsetX path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponent.cs startLine: 143 diff --git a/api/Vintagestory.API.Client.RichTextComponentBase.yml b/api/Vintagestory.API.Client.RichTextComponentBase.yml index fe0ff2a2..c132f0cd 100644 --- a/api/Vintagestory.API.Client.RichTextComponentBase.yml +++ b/api/Vintagestory.API.Client.RichTextComponentBase.yml @@ -34,8 +34,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RichTextComponentBase path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs startLine: 37 @@ -73,8 +73,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MouseOverCursor path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs startLine: 39 @@ -102,8 +102,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: api path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs startLine: 41 @@ -129,8 +129,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs startLine: 43 @@ -161,8 +161,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BoundsPerLine path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs startLine: 51 @@ -192,8 +192,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UnscaledMarginTop path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs startLine: 56 @@ -223,8 +223,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PaddingRight path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs startLine: 61 @@ -254,8 +254,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PaddingLeft path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs startLine: 66 @@ -285,8 +285,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Float path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs startLine: 72 @@ -316,8 +316,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderColor path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs startLine: 74 @@ -345,8 +345,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VerticalAlign path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs startLine: 76 @@ -374,8 +374,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs startLine: 83 @@ -409,8 +409,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs startLine: 96 @@ -453,8 +453,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CalcBounds path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs startLine: 111 @@ -503,8 +503,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCurrentFlowPathSection path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs startLine: 118 @@ -539,8 +539,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseMove path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs startLine: 130 @@ -568,8 +568,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDown path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs startLine: 135 @@ -597,8 +597,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseUp path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs startLine: 140 @@ -626,8 +626,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs startLine: 145 @@ -652,8 +652,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UseMouseOverCursor path: Client/UI/Elements/Impl/Interactive/Text/Richtext/RichTextComponentBase.cs startLine: 150 diff --git a/api/Vintagestory.API.Client.SavegameCellEntry.yml b/api/Vintagestory.API.Client.SavegameCellEntry.yml index adf8065f..02257032 100644 --- a/api/Vintagestory.API.Client.SavegameCellEntry.yml +++ b/api/Vintagestory.API.Client.SavegameCellEntry.yml @@ -28,8 +28,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/SavegameCellEntry.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SavegameCellEntry path: Client/UI/Elements/Impl/Misc/SavegameCellEntry.cs startLine: 6 @@ -63,8 +63,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/SavegameCellEntry.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Title path: Client/UI/Elements/Impl/Misc/SavegameCellEntry.cs startLine: 11 @@ -92,8 +92,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/SavegameCellEntry.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DetailText path: Client/UI/Elements/Impl/Misc/SavegameCellEntry.cs startLine: 16 @@ -121,8 +121,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/SavegameCellEntry.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RightTopText path: Client/UI/Elements/Impl/Misc/SavegameCellEntry.cs startLine: 21 @@ -150,8 +150,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/SavegameCellEntry.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HoverText path: Client/UI/Elements/Impl/Misc/SavegameCellEntry.cs startLine: 23 @@ -177,8 +177,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/SavegameCellEntry.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RightTopOffY path: Client/UI/Elements/Impl/Misc/SavegameCellEntry.cs startLine: 28 @@ -206,8 +206,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/SavegameCellEntry.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LeftOffY path: Client/UI/Elements/Impl/Misc/SavegameCellEntry.cs startLine: 33 @@ -235,8 +235,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/SavegameCellEntry.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DetailTextOffY path: Client/UI/Elements/Impl/Misc/SavegameCellEntry.cs startLine: 36 @@ -262,8 +262,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/SavegameCellEntry.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnClick path: Client/UI/Elements/Impl/Misc/SavegameCellEntry.cs startLine: 41 @@ -291,8 +291,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/SavegameCellEntry.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TitleFont path: Client/UI/Elements/Impl/Misc/SavegameCellEntry.cs startLine: 46 @@ -320,8 +320,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/SavegameCellEntry.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DetailTextFont path: Client/UI/Elements/Impl/Misc/SavegameCellEntry.cs startLine: 51 @@ -349,8 +349,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/SavegameCellEntry.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawAsButton path: Client/UI/Elements/Impl/Misc/SavegameCellEntry.cs startLine: 56 @@ -378,8 +378,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/SavegameCellEntry.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Enabled path: Client/UI/Elements/Impl/Misc/SavegameCellEntry.cs startLine: 61 @@ -407,8 +407,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/SavegameCellEntry.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Selected path: Client/UI/Elements/Impl/Misc/SavegameCellEntry.cs startLine: 63 diff --git a/api/Vintagestory.API.Client.SelectionChangedDelegate.yml b/api/Vintagestory.API.Client.SelectionChangedDelegate.yml index 3565e5dc..c9be411a 100644 --- a/api/Vintagestory.API.Client.SelectionChangedDelegate.yml +++ b/api/Vintagestory.API.Client.SelectionChangedDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SelectionChangedDelegate path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementDropDown.cs startLine: 7 diff --git a/api/Vintagestory.API.Client.SkillItem.yml b/api/Vintagestory.API.Client.SkillItem.yml index 7031a801..f20663ec 100644 --- a/api/Vintagestory.API.Client.SkillItem.yml +++ b/api/Vintagestory.API.Client.SkillItem.yml @@ -30,8 +30,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/SkillItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SkillItem path: Client/UI/Elements/Impl/Misc/SkillItem.cs startLine: 11 @@ -67,8 +67,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/SkillItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Name path: Client/UI/Elements/Impl/Misc/SkillItem.cs startLine: 13 @@ -94,8 +94,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/SkillItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Description path: Client/UI/Elements/Impl/Misc/SkillItem.cs startLine: 14 @@ -121,8 +121,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/SkillItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Client/UI/Elements/Impl/Misc/SkillItem.cs startLine: 15 @@ -148,8 +148,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/SkillItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Texture path: Client/UI/Elements/Impl/Misc/SkillItem.cs startLine: 16 @@ -175,8 +175,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/SkillItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Hotkey path: Client/UI/Elements/Impl/Misc/SkillItem.cs startLine: 17 @@ -202,8 +202,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/SkillItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Linebreak path: Client/UI/Elements/Impl/Misc/SkillItem.cs startLine: 18 @@ -229,8 +229,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/SkillItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Enabled path: Client/UI/Elements/Impl/Misc/SkillItem.cs startLine: 19 @@ -256,8 +256,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/SkillItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderHandler path: Client/UI/Elements/Impl/Misc/SkillItem.cs startLine: 21 @@ -283,8 +283,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/SkillItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Data path: Client/UI/Elements/Impl/Misc/SkillItem.cs startLine: 23 @@ -310,8 +310,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/SkillItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TexturePremultipliedAlpha path: Client/UI/Elements/Impl/Misc/SkillItem.cs startLine: 24 @@ -337,8 +337,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/SkillItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithIcon path: Client/UI/Elements/Impl/Misc/SkillItem.cs startLine: 26 @@ -370,8 +370,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/SkillItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithIcon path: Client/UI/Elements/Impl/Misc/SkillItem.cs startLine: 38 @@ -406,8 +406,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/SkillItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithLetterIcon path: Client/UI/Elements/Impl/Misc/SkillItem.cs startLine: 50 @@ -442,8 +442,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/SkillItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithIcon path: Client/UI/Elements/Impl/Misc/SkillItem.cs startLine: 69 @@ -475,8 +475,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Misc/SkillItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Misc/SkillItem.cs startLine: 76 diff --git a/api/Vintagestory.API.Client.SliderTooltipDelegate.yml b/api/Vintagestory.API.Client.SliderTooltipDelegate.yml index 568a581c..7b1f5f83 100644 --- a/api/Vintagestory.API.Client.SliderTooltipDelegate.yml +++ b/api/Vintagestory.API.Client.SliderTooltipDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SliderTooltipDelegate path: Client/UI/Elements/Impl/Interactive/Controls/GuiElementSlider.cs startLine: 8 diff --git a/api/Vintagestory.API.Client.SlideshowGridRecipeTextComponent.yml b/api/Vintagestory.API.Client.SlideshowGridRecipeTextComponent.yml index 5f4fdb39..5b6b6d18 100644 --- a/api/Vintagestory.API.Client.SlideshowGridRecipeTextComponent.yml +++ b/api/Vintagestory.API.Client.SlideshowGridRecipeTextComponent.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowGridRecipeTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SlideshowGridRecipeTextComponent path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowGridRecipeTextComponent.cs startLine: 26 @@ -85,8 +85,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowGridRecipeTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GridRecipesAndUnIn path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowGridRecipeTextComponent.cs startLine: 28 @@ -112,8 +112,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowGridRecipeTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentVisibleRecipe path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowGridRecipeTextComponent.cs startLine: 43 @@ -139,8 +139,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowGridRecipeTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowGridRecipeTextComponent.cs startLine: 56 @@ -189,8 +189,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowGridRecipeTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CalcBounds path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowGridRecipeTextComponent.cs startLine: 232 @@ -240,8 +240,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowGridRecipeTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowGridRecipeTextComponent.cs startLine: 250 @@ -276,8 +276,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowGridRecipeTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowGridRecipeTextComponent.cs startLine: 266 @@ -321,8 +321,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowGridRecipeTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDown path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowGridRecipeTextComponent.cs startLine: 347 @@ -352,8 +352,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowGridRecipeTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowGridRecipeTextComponent.cs startLine: 377 diff --git a/api/Vintagestory.API.Client.SlideshowItemstackTextComponent.yml b/api/Vintagestory.API.Client.SlideshowItemstackTextComponent.yml index ac946649..4042fb1e 100644 --- a/api/Vintagestory.API.Client.SlideshowItemstackTextComponent.yml +++ b/api/Vintagestory.API.Client.SlideshowItemstackTextComponent.yml @@ -34,8 +34,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SlideshowItemstackTextComponent path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs startLine: 16 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShowTooltip path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs startLine: 18 @@ -123,8 +123,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Itemstacks path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs startLine: 20 @@ -150,8 +150,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: slot path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs startLine: 21 @@ -177,8 +177,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: onStackClicked path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs startLine: 23 @@ -204,8 +204,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: secondsVisible path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs startLine: 25 @@ -231,8 +231,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: curItemIndex path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs startLine: 26 @@ -258,8 +258,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShowStackSize path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs startLine: 28 @@ -287,8 +287,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Background path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs startLine: 29 @@ -316,8 +316,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExtraTooltipText path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs startLine: 31 @@ -343,8 +343,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: renderOffset path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs startLine: 33 @@ -370,8 +370,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: renderSize path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs startLine: 35 @@ -397,8 +397,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: overrideCurrentItemStack path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs startLine: 39 @@ -424,8 +424,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs startLine: 49 @@ -471,8 +471,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs startLine: 69 @@ -521,8 +521,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CalcBounds path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs startLine: 143 @@ -572,8 +572,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ComposeElements path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs startLine: 160 @@ -608,8 +608,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnRequireInfoText path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs startLine: 175 @@ -641,8 +641,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderInteractiveElements path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs startLine: 180 @@ -686,8 +686,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMouseDown path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs startLine: 226 diff --git a/api/Vintagestory.API.Client.SoundParams.yml b/api/Vintagestory.API.Client.SoundParams.yml index a7b18448..692a4259 100644 --- a/api/Vintagestory.API.Client.SoundParams.yml +++ b/api/Vintagestory.API.Client.SoundParams.yml @@ -27,8 +27,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SoundParams.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SoundParams path: Client/Audio/SoundParams.cs startLine: 20 @@ -64,8 +64,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SoundParams.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Location path: Client/Audio/SoundParams.cs startLine: 25 @@ -93,8 +93,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SoundParams.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Position path: Client/Audio/SoundParams.cs startLine: 30 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SoundParams.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RelativePosition path: Client/Audio/SoundParams.cs startLine: 35 @@ -151,8 +151,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SoundParams.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldLoop path: Client/Audio/SoundParams.cs startLine: 40 @@ -180,8 +180,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SoundParams.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DisposeOnFinish path: Client/Audio/SoundParams.cs startLine: 45 @@ -209,8 +209,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SoundParams.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pitch path: Client/Audio/SoundParams.cs startLine: 50 @@ -238,8 +238,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SoundParams.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReferenceDistance path: Client/Audio/SoundParams.cs startLine: 55 @@ -267,8 +267,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SoundParams.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Volume path: Client/Audio/SoundParams.cs startLine: 60 @@ -298,8 +298,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SoundParams.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Range path: Client/Audio/SoundParams.cs startLine: 78 @@ -327,8 +327,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SoundParams.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SoundType path: Client/Audio/SoundParams.cs startLine: 83 @@ -356,8 +356,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SoundParams.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Audio/SoundParams.cs startLine: 88 @@ -387,8 +387,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SoundParams.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Audio/SoundParams.cs startLine: 97 diff --git a/api/Vintagestory.API.Client.StackAndWildCard.yml b/api/Vintagestory.API.Client.StackAndWildCard.yml index a35d2573..2cbdb5d7 100644 --- a/api/Vintagestory.API.Client.StackAndWildCard.yml +++ b/api/Vintagestory.API.Client.StackAndWildCard.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowGridRecipeTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StackAndWildCard path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowGridRecipeTextComponent.cs startLine: 9 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowGridRecipeTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Stack path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowGridRecipeTextComponent.cs startLine: 11 @@ -79,8 +79,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowGridRecipeTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WildCard path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowGridRecipeTextComponent.cs startLine: 12 diff --git a/api/Vintagestory.API.Client.StackDisplayDelegate.yml b/api/Vintagestory.API.Client.StackDisplayDelegate.yml index ec0bad45..4a2d80b8 100644 --- a/api/Vintagestory.API.Client.StackDisplayDelegate.yml +++ b/api/Vintagestory.API.Client.StackDisplayDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StackDisplayDelegate path: Client/UI/Elements/Impl/Interactive/Text/Richtext/SlideshowItemstackTextComponent.cs startLine: 11 diff --git a/api/Vintagestory.API.Client.StatbarValueDelegate.yml b/api/Vintagestory.API.Client.StatbarValueDelegate.yml index 43799c8c..daee7a1e 100644 --- a/api/Vintagestory.API.Client.StatbarValueDelegate.yml +++ b/api/Vintagestory.API.Client.StatbarValueDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StatbarValueDelegate path: Client/UI/Elements/Impl/Interactive/GuiElementStatbar.cs startLine: 7 diff --git a/api/Vintagestory.API.Client.SurfaceMusicTrack.yml b/api/Vintagestory.API.Client.SurfaceMusicTrack.yml index 5ae2cf79..3d7dc80c 100644 --- a/api/Vintagestory.API.Client.SurfaceMusicTrack.yml +++ b/api/Vintagestory.API.Client.SurfaceMusicTrack.yml @@ -56,8 +56,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SurfaceMusicTrack path: Client/Audio/SurfaceMusicTrack.cs startLine: 14 @@ -109,8 +109,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Location path: Client/Audio/SurfaceMusicTrack.cs startLine: 21 @@ -150,8 +150,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnPlayList path: Client/Audio/SurfaceMusicTrack.cs startLine: 27 @@ -189,8 +189,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnPlayLists path: Client/Audio/SurfaceMusicTrack.cs startLine: 29 @@ -216,8 +216,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinSunlight path: Client/Audio/SurfaceMusicTrack.cs startLine: 35 @@ -255,8 +255,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinHour path: Client/Audio/SurfaceMusicTrack.cs startLine: 41 @@ -294,8 +294,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxHour path: Client/Audio/SurfaceMusicTrack.cs startLine: 47 @@ -333,8 +333,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Chance path: Client/Audio/SurfaceMusicTrack.cs startLine: 50 @@ -370,8 +370,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxTemperature path: Client/Audio/SurfaceMusicTrack.cs startLine: 53 @@ -407,8 +407,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinRainFall path: Client/Audio/SurfaceMusicTrack.cs startLine: 56 @@ -444,8 +444,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinSeason path: Client/Audio/SurfaceMusicTrack.cs startLine: 59 @@ -481,8 +481,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxSeason path: Client/Audio/SurfaceMusicTrack.cs startLine: 62 @@ -518,8 +518,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinLatitude path: Client/Audio/SurfaceMusicTrack.cs startLine: 65 @@ -555,8 +555,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxLatitude path: Client/Audio/SurfaceMusicTrack.cs startLine: 68 @@ -592,8 +592,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DistanceToSpawnPoint path: Client/Audio/SurfaceMusicTrack.cs startLine: 71 @@ -629,8 +629,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Priority path: Client/Audio/SurfaceMusicTrack.cs startLine: 76 @@ -672,8 +672,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartPriorityRnd path: Client/Audio/SurfaceMusicTrack.cs startLine: 83 @@ -715,8 +715,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartPriority path: Client/Audio/SurfaceMusicTrack.cs startLine: 86 @@ -748,8 +748,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sound path: Client/Audio/SurfaceMusicTrack.cs startLine: 96 @@ -777,8 +777,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsActive path: Client/Audio/SurfaceMusicTrack.cs startLine: 101 @@ -810,8 +810,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Name path: Client/Audio/SurfaceMusicTrack.cs startLine: 111 @@ -843,8 +843,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldPlayMusic path: Client/Audio/SurfaceMusicTrack.cs startLine: 147 @@ -870,8 +870,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: globalCooldownUntilMs path: Client/Audio/SurfaceMusicTrack.cs startLine: 157 @@ -899,8 +899,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: tracksCooldownUntilMs path: Client/Audio/SurfaceMusicTrack.cs startLine: 162 @@ -928,8 +928,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: capi path: Client/Audio/SurfaceMusicTrack.cs startLine: 167 @@ -957,8 +957,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: musicEngine path: Client/Audio/SurfaceMusicTrack.cs startLine: 168 @@ -984,8 +984,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: nowMinHour path: Client/Audio/SurfaceMusicTrack.cs startLine: 170 @@ -1011,8 +1011,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: nowMaxHour path: Client/Audio/SurfaceMusicTrack.cs startLine: 171 @@ -1038,8 +1038,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: prevFrequency path: Client/Audio/SurfaceMusicTrack.cs startLine: 177 @@ -1067,8 +1067,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MusicFrequency path: Client/Audio/SurfaceMusicTrack.cs startLine: 182 @@ -1098,8 +1098,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Initialize path: Client/Audio/SurfaceMusicTrack.cs startLine: 195 @@ -1138,8 +1138,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeginSort path: Client/Audio/SurfaceMusicTrack.cs startLine: 219 @@ -1168,8 +1168,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: selectMinMaxHour path: Client/Audio/SurfaceMusicTrack.cs startLine: 224 @@ -1194,8 +1194,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FrequencyChanged path: Client/Audio/SurfaceMusicTrack.cs startLine: 239 @@ -1232,8 +1232,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldPlay path: Client/Audio/SurfaceMusicTrack.cs startLine: 260 @@ -1275,8 +1275,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeginPlay path: Client/Audio/SurfaceMusicTrack.cs startLine: 313 @@ -1309,8 +1309,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ContinuePlay path: Client/Audio/SurfaceMusicTrack.cs startLine: 337 @@ -1352,8 +1352,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FadeOut path: Client/Audio/SurfaceMusicTrack.cs startLine: 360 @@ -1392,8 +1392,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetCooldown path: Client/Audio/SurfaceMusicTrack.cs startLine: 385 @@ -1427,8 +1427,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UpdateVolume path: Client/Audio/SurfaceMusicTrack.cs startLine: 396 @@ -1457,8 +1457,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FastForward path: Client/Audio/SurfaceMusicTrack.cs startLine: 404 @@ -1492,8 +1492,8 @@ items: source: remote: path: VintagestoryApi/Client/Audio/SurfaceMusicTrack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PositionString path: Client/Audio/SurfaceMusicTrack.cs startLine: 414 diff --git a/api/Vintagestory.API.Client.Tesselation.TileSideEnum.yml b/api/Vintagestory.API.Client.Tesselation.TileSideEnum.yml index 73dbd072..1ab5d9e4 100644 --- a/api/Vintagestory.API.Client.Tesselation.TileSideEnum.yml +++ b/api/Vintagestory.API.Client.Tesselation.TileSideEnum.yml @@ -29,8 +29,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Tesselation/TileSide.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TileSideEnum path: Client/Model/Tesselation/TileSide.cs startLine: 5 @@ -64,8 +64,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Tesselation/TileSide.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: North path: Client/Model/Tesselation/TileSide.cs startLine: 7 @@ -91,8 +91,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Tesselation/TileSide.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: East path: Client/Model/Tesselation/TileSide.cs startLine: 8 @@ -118,8 +118,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Tesselation/TileSide.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: South path: Client/Model/Tesselation/TileSide.cs startLine: 9 @@ -145,8 +145,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Tesselation/TileSide.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: West path: Client/Model/Tesselation/TileSide.cs startLine: 10 @@ -172,8 +172,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Tesselation/TileSide.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Up path: Client/Model/Tesselation/TileSide.cs startLine: 11 @@ -199,8 +199,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Tesselation/TileSide.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Down path: Client/Model/Tesselation/TileSide.cs startLine: 12 @@ -226,8 +226,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Tesselation/TileSide.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SideCount path: Client/Model/Tesselation/TileSide.cs startLine: 14 @@ -253,8 +253,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Tesselation/TileSide.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Opposites path: Client/Model/Tesselation/TileSide.cs startLine: 16 @@ -280,8 +280,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Tesselation/TileSide.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AxisByTileSide path: Client/Model/Tesselation/TileSide.cs startLine: 21 @@ -307,8 +307,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Tesselation/TileSide.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OffsetByTileSide path: Client/Model/Tesselation/TileSide.cs startLine: 26 @@ -334,8 +334,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Tesselation/TileSide.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MoveIndex path: Client/Model/Tesselation/TileSide.cs startLine: 36 @@ -361,8 +361,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Tesselation/TileSide.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Codes path: Client/Model/Tesselation/TileSide.cs startLine: 38 @@ -388,8 +388,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Tesselation/TileSide.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToFlags path: Client/Model/Tesselation/TileSide.cs startLine: 43 @@ -422,8 +422,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Tesselation/TileSide.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetOpposite path: Client/Model/Tesselation/TileSide.cs startLine: 58 diff --git a/api/Vintagestory.API.Client.Tesselation.TileSideFlagsEnum.yml b/api/Vintagestory.API.Client.Tesselation.TileSideFlagsEnum.yml index 5b5d46b1..19212554 100644 --- a/api/Vintagestory.API.Client.Tesselation.TileSideFlagsEnum.yml +++ b/api/Vintagestory.API.Client.Tesselation.TileSideFlagsEnum.yml @@ -24,8 +24,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Tesselation/TileSide.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TileSideFlagsEnum path: Client/Model/Tesselation/TileSide.cs startLine: 68 @@ -59,8 +59,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Tesselation/TileSide.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: None path: Client/Model/Tesselation/TileSide.cs startLine: 70 @@ -86,8 +86,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Tesselation/TileSide.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: North path: Client/Model/Tesselation/TileSide.cs startLine: 71 @@ -113,8 +113,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Tesselation/TileSide.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: East path: Client/Model/Tesselation/TileSide.cs startLine: 72 @@ -140,8 +140,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Tesselation/TileSide.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: South path: Client/Model/Tesselation/TileSide.cs startLine: 73 @@ -167,8 +167,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Tesselation/TileSide.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: West path: Client/Model/Tesselation/TileSide.cs startLine: 74 @@ -194,8 +194,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Tesselation/TileSide.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Up path: Client/Model/Tesselation/TileSide.cs startLine: 75 @@ -221,8 +221,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Tesselation/TileSide.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Down path: Client/Model/Tesselation/TileSide.cs startLine: 76 @@ -248,8 +248,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Tesselation/TileSide.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: All path: Client/Model/Tesselation/TileSide.cs startLine: 78 @@ -275,8 +275,8 @@ items: source: remote: path: VintagestoryApi/Client/Model/Tesselation/TileSide.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HasFlag path: Client/Model/Tesselation/TileSide.cs startLine: 80 diff --git a/api/Vintagestory.API.Client.TesselationMetaData.yml b/api/Vintagestory.API.Client.TesselationMetaData.yml index c783d38f..0ef49892 100644 --- a/api/Vintagestory.API.Client.TesselationMetaData.yml +++ b/api/Vintagestory.API.Client.TesselationMetaData.yml @@ -30,8 +30,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TesselationMetaData path: Client/API/ITesselatorAPI.cs startLine: 8 @@ -65,8 +65,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TexSource path: Client/API/ITesselatorAPI.cs startLine: 10 @@ -92,8 +92,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GeneralGlowLevel path: Client/API/ITesselatorAPI.cs startLine: 11 @@ -119,8 +119,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClimateColorMapId path: Client/API/ITesselatorAPI.cs startLine: 12 @@ -146,8 +146,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SeasonColorMapId path: Client/API/ITesselatorAPI.cs startLine: 13 @@ -173,8 +173,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: QuantityElements path: Client/API/ITesselatorAPI.cs startLine: 14 @@ -200,8 +200,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SelectiveElements path: Client/API/ITesselatorAPI.cs startLine: 15 @@ -227,8 +227,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TexturesSizes path: Client/API/ITesselatorAPI.cs startLine: 16 @@ -254,8 +254,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TypeForLogging path: Client/API/ITesselatorAPI.cs startLine: 17 @@ -281,8 +281,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithJointIds path: Client/API/ITesselatorAPI.cs startLine: 18 @@ -308,8 +308,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithDamageEffect path: Client/API/ITesselatorAPI.cs startLine: 19 @@ -335,8 +335,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rotation path: Client/API/ITesselatorAPI.cs startLine: 20 @@ -362,8 +362,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GeneralWindMode path: Client/API/ITesselatorAPI.cs startLine: 22 @@ -389,8 +389,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UsesColorMap path: Client/API/ITesselatorAPI.cs startLine: 24 @@ -416,8 +416,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: defaultTextureSize path: Client/API/ITesselatorAPI.cs startLine: 25 @@ -443,8 +443,8 @@ items: source: remote: path: VintagestoryApi/Client/API/ITesselatorAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Client/API/ITesselatorAPI.cs startLine: 27 diff --git a/api/Vintagestory.API.Client.TextBackground.yml b/api/Vintagestory.API.Client.TextBackground.yml index 8597fb4f..dab212e3 100644 --- a/api/Vintagestory.API.Client.TextBackground.yml +++ b/api/Vintagestory.API.Client.TextBackground.yml @@ -25,8 +25,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextBackground.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TextBackground path: Client/UI/TextBackground.cs startLine: 2 @@ -60,8 +60,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextBackground.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Padding path: Client/UI/TextBackground.cs startLine: 4 @@ -89,8 +89,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextBackground.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HorPadding path: Client/UI/TextBackground.cs startLine: 12 @@ -118,8 +118,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextBackground.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VerPadding path: Client/UI/TextBackground.cs startLine: 14 @@ -145,8 +145,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextBackground.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Radius path: Client/UI/TextBackground.cs startLine: 19 @@ -174,8 +174,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextBackground.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FillColor path: Client/UI/TextBackground.cs startLine: 24 @@ -203,8 +203,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextBackground.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BorderColor path: Client/UI/TextBackground.cs startLine: 29 @@ -232,8 +232,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextBackground.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BorderWidth path: Client/UI/TextBackground.cs startLine: 34 @@ -261,8 +261,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextBackground.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Shade path: Client/UI/TextBackground.cs startLine: 39 @@ -290,8 +290,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextBackground.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShadeColor path: Client/UI/TextBackground.cs startLine: 41 @@ -317,8 +317,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextBackground.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Client/UI/TextBackground.cs startLine: 43 diff --git a/api/Vintagestory.API.Client.TextDrawUtil.yml b/api/Vintagestory.API.Client.TextDrawUtil.yml index f7461694..0fe1ae05 100644 --- a/api/Vintagestory.API.Client.TextDrawUtil.yml +++ b/api/Vintagestory.API.Client.TextDrawUtil.yml @@ -30,8 +30,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TextDrawUtil path: Client/UI/TextDrawUtil.cs startLine: 91 @@ -65,8 +65,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Lineize path: Client/UI/TextDrawUtil.cs startLine: 99 @@ -109,8 +109,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetQuantityTextLines path: Client/UI/TextDrawUtil.cs startLine: 102 @@ -149,8 +149,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMultilineTextHeight path: Client/UI/TextDrawUtil.cs startLine: 105 @@ -189,8 +189,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Lineize path: Client/UI/TextDrawUtil.cs startLine: 108 @@ -231,8 +231,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AutobreakAndDrawMultilineText path: Client/UI/TextDrawUtil.cs startLine: 122 @@ -278,8 +278,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AutobreakAndDrawMultilineTextAt path: Client/UI/TextDrawUtil.cs startLine: 136 @@ -334,8 +334,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawMultilineTextAt path: Client/UI/TextDrawUtil.cs startLine: 158 @@ -387,8 +387,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetLineHeight path: Client/UI/TextDrawUtil.cs startLine: 180 @@ -422,8 +422,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetQuantityTextLines path: Client/UI/TextDrawUtil.cs startLine: 194 @@ -472,8 +472,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMultilineTextHeight path: Client/UI/TextDrawUtil.cs startLine: 219 @@ -522,8 +522,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Lineize path: Client/UI/TextDrawUtil.cs startLine: 236 @@ -578,8 +578,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Lineize path: Client/UI/TextDrawUtil.cs startLine: 265 @@ -637,8 +637,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AutobreakAndDrawMultilineText path: Client/UI/TextDrawUtil.cs startLine: 461 @@ -685,8 +685,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawMultilineText path: Client/UI/TextDrawUtil.cs startLine: 477 @@ -729,8 +729,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawTextLine path: Client/UI/TextDrawUtil.cs startLine: 511 diff --git a/api/Vintagestory.API.Client.TextFlowPath.yml b/api/Vintagestory.API.Client.TextFlowPath.yml index 800521fd..a3bac46b 100644 --- a/api/Vintagestory.API.Client.TextFlowPath.yml +++ b/api/Vintagestory.API.Client.TextFlowPath.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TextFlowPath path: Client/UI/TextDrawUtil.cs startLine: 25 @@ -57,8 +57,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X1 path: Client/UI/TextDrawUtil.cs startLine: 27 @@ -84,8 +84,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y1 path: Client/UI/TextDrawUtil.cs startLine: 27 @@ -111,8 +111,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X2 path: Client/UI/TextDrawUtil.cs startLine: 27 @@ -138,8 +138,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y2 path: Client/UI/TextDrawUtil.cs startLine: 27 @@ -165,8 +165,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/TextDrawUtil.cs startLine: 29 @@ -194,8 +194,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/TextDrawUtil.cs startLine: 31 @@ -226,8 +226,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/TextDrawUtil.cs startLine: 39 diff --git a/api/Vintagestory.API.Client.TextLine.yml b/api/Vintagestory.API.Client.TextLine.yml index 3d60fb2e..f907066c 100644 --- a/api/Vintagestory.API.Client.TextLine.yml +++ b/api/Vintagestory.API.Client.TextLine.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TextLine path: Client/UI/TextDrawUtil.cs startLine: 48 @@ -55,8 +55,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Text path: Client/UI/TextDrawUtil.cs startLine: 53 @@ -84,8 +84,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Bounds path: Client/UI/TextDrawUtil.cs startLine: 58 @@ -113,8 +113,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LeftSpace path: Client/UI/TextDrawUtil.cs startLine: 60 @@ -140,8 +140,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RightSpace path: Client/UI/TextDrawUtil.cs startLine: 61 @@ -167,8 +167,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextDrawUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NextOffsetX path: Client/UI/TextDrawUtil.cs startLine: 63 diff --git a/api/Vintagestory.API.Client.TextTextureUtil.yml b/api/Vintagestory.API.Client.TextTextureUtil.yml index 2f6b8d93..15fba3b0 100644 --- a/api/Vintagestory.API.Client.TextTextureUtil.yml +++ b/api/Vintagestory.API.Client.TextTextureUtil.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextTextureUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TextTextureUtil path: Client/UI/TextTextureUtil.cs startLine: 5 @@ -58,8 +58,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextTextureUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/UI/TextTextureUtil.cs startLine: 14 @@ -93,8 +93,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextTextureUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GenTextTexture path: Client/UI/TextTextureUtil.cs startLine: 30 @@ -149,8 +149,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextTextureUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GenOrUpdateTextTexture path: Client/UI/TextTextureUtil.cs startLine: 48 @@ -205,8 +205,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextTextureUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GenTextTexture path: Client/UI/TextTextureUtil.cs startLine: 97 @@ -255,8 +255,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextTextureUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GenTextTexture path: Client/UI/TextTextureUtil.cs startLine: 189 @@ -299,8 +299,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextTextureUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GenOrUpdateTextTexture path: Client/UI/TextTextureUtil.cs startLine: 204 @@ -343,8 +343,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextTextureUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GenUnscaledTextTexture path: Client/UI/TextTextureUtil.cs startLine: 233 @@ -387,8 +387,8 @@ items: source: remote: path: VintagestoryApi/Client/UI/TextTextureUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GenTextTexture path: Client/UI/TextTextureUtil.cs startLine: 264 diff --git a/api/Vintagestory.API.Client.TextureAtlasPosition.yml b/api/Vintagestory.API.Client.TextureAtlasPosition.yml index 62405f38..796ac6f8 100644 --- a/api/Vintagestory.API.Client.TextureAtlasPosition.yml +++ b/api/Vintagestory.API.Client.TextureAtlasPosition.yml @@ -26,8 +26,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/TextureAtlasPosition.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TextureAtlasPosition path: Client/Texture/TextureAtlasPosition.cs startLine: 5 @@ -63,8 +63,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/TextureAtlasPosition.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RndColorsLength path: Client/Texture/TextureAtlasPosition.cs startLine: 7 @@ -90,8 +90,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/TextureAtlasPosition.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: atlasTextureId path: Client/Texture/TextureAtlasPosition.cs startLine: 12 @@ -119,8 +119,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/TextureAtlasPosition.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: atlasNumber path: Client/Texture/TextureAtlasPosition.cs startLine: 17 @@ -148,8 +148,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/TextureAtlasPosition.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: reloadIteration path: Client/Texture/TextureAtlasPosition.cs startLine: 22 @@ -177,8 +177,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/TextureAtlasPosition.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AvgColor path: Client/Texture/TextureAtlasPosition.cs startLine: 24 @@ -204,8 +204,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/TextureAtlasPosition.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RndColors path: Client/Texture/TextureAtlasPosition.cs startLine: 26 @@ -231,8 +231,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/TextureAtlasPosition.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: x1 path: Client/Texture/TextureAtlasPosition.cs startLine: 31 @@ -260,8 +260,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/TextureAtlasPosition.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: y1 path: Client/Texture/TextureAtlasPosition.cs startLine: 36 @@ -289,8 +289,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/TextureAtlasPosition.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: x2 path: Client/Texture/TextureAtlasPosition.cs startLine: 41 @@ -318,8 +318,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/TextureAtlasPosition.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: y2 path: Client/Texture/TextureAtlasPosition.cs startLine: 46 @@ -347,8 +347,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/TextureAtlasPosition.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Client/Texture/TextureAtlasPosition.cs startLine: 48 diff --git a/api/Vintagestory.API.Client.TextureDictionary.yml b/api/Vintagestory.API.Client.TextureDictionary.yml index 90b3a845..60d7e56a 100644 --- a/api/Vintagestory.API.Client.TextureDictionary.yml +++ b/api/Vintagestory.API.Client.TextureDictionary.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/TextureDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TextureDictionary path: Client/Texture/TextureDictionary.cs startLine: 5 @@ -84,8 +84,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/TextureDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Texture/TextureDictionary.cs startLine: 9 @@ -113,8 +113,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/TextureDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Client/Texture/TextureDictionary.cs startLine: 13 @@ -145,8 +145,8 @@ items: source: remote: path: VintagestoryApi/Client/Texture/TextureDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BakeAndCollect path: Client/Texture/TextureDictionary.cs startLine: 20 diff --git a/api/Vintagestory.API.Client.VisibleTestDelegate.yml b/api/Vintagestory.API.Client.VisibleTestDelegate.yml index 9beacc5a..76afea50 100644 --- a/api/Vintagestory.API.Client.VisibleTestDelegate.yml +++ b/api/Vintagestory.API.Client.VisibleTestDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Client/MeshPool/MeshDataPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VisibleTestDelegate path: Client/MeshPool/MeshDataPool.cs startLine: 538 diff --git a/api/Vintagestory.API.Client.WorldInteraction.yml b/api/Vintagestory.API.Client.WorldInteraction.yml index 196437de..5d3a77de 100644 --- a/api/Vintagestory.API.Client.WorldInteraction.yml +++ b/api/Vintagestory.API.Client.WorldInteraction.yml @@ -24,8 +24,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WorldInteraction path: Client/API/IClientWorldAccessor.cs startLine: 13 @@ -71,8 +71,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MouseButton path: Client/API/IClientWorldAccessor.cs startLine: 20 @@ -110,8 +110,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HotKeyCode path: Client/API/IClientWorldAccessor.cs startLine: 26 @@ -149,8 +149,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HotKeyCodes path: Client/API/IClientWorldAccessor.cs startLine: 31 @@ -190,8 +190,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ActionLangCode path: Client/API/IClientWorldAccessor.cs startLine: 38 @@ -229,8 +229,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: JsonItemStacks path: Client/API/IClientWorldAccessor.cs startLine: 45 @@ -273,8 +273,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Itemstacks path: Client/API/IClientWorldAccessor.cs startLine: 47 @@ -300,8 +300,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RequireFreeHand path: Client/API/IClientWorldAccessor.cs startLine: 52 @@ -329,8 +329,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMatchingStacks path: Client/API/IClientWorldAccessor.cs startLine: 57 @@ -358,8 +358,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldApply path: Client/API/IClientWorldAccessor.cs startLine: 62 diff --git a/api/Vintagestory.API.Common.ActionBoolReturn-1.yml b/api/Vintagestory.API.Common.ActionBoolReturn-1.yml index 268a4f72..e381ad32 100644 --- a/api/Vintagestory.API.Common.ActionBoolReturn-1.yml +++ b/api/Vintagestory.API.Common.ActionBoolReturn-1.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ActionBoolReturn path: Common/API/Delegates.cs startLine: 40 diff --git a/api/Vintagestory.API.Common.ActionBoolReturn-2.yml b/api/Vintagestory.API.Common.ActionBoolReturn-2.yml index f17a5df3..f42fea44 100644 --- a/api/Vintagestory.API.Common.ActionBoolReturn-2.yml +++ b/api/Vintagestory.API.Common.ActionBoolReturn-2.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ActionBoolReturn path: Common/API/Delegates.cs startLine: 48 diff --git a/api/Vintagestory.API.Common.ActionBoolReturn-3.yml b/api/Vintagestory.API.Common.ActionBoolReturn-3.yml index 1946f3e3..c638715d 100644 --- a/api/Vintagestory.API.Common.ActionBoolReturn-3.yml +++ b/api/Vintagestory.API.Common.ActionBoolReturn-3.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ActionBoolReturn path: Common/API/Delegates.cs startLine: 57 diff --git a/api/Vintagestory.API.Common.ActionBoolReturn.yml b/api/Vintagestory.API.Common.ActionBoolReturn.yml index fe29506b..9bc8fbdb 100644 --- a/api/Vintagestory.API.Common.ActionBoolReturn.yml +++ b/api/Vintagestory.API.Common.ActionBoolReturn.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ActionBoolReturn path: Common/API/Delegates.cs startLine: 32 diff --git a/api/Vintagestory.API.Common.ActionConsumable-1.yml b/api/Vintagestory.API.Common.ActionConsumable-1.yml index 7b049ed9..1231e570 100644 --- a/api/Vintagestory.API.Common.ActionConsumable-1.yml +++ b/api/Vintagestory.API.Common.ActionConsumable-1.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ActionConsumable path: Common/API/Delegates.cs startLine: 20 diff --git a/api/Vintagestory.API.Common.ActionConsumable-2.yml b/api/Vintagestory.API.Common.ActionConsumable-2.yml index 9113c38f..955b3318 100644 --- a/api/Vintagestory.API.Common.ActionConsumable-2.yml +++ b/api/Vintagestory.API.Common.ActionConsumable-2.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ActionConsumable path: Common/API/Delegates.cs startLine: 67 diff --git a/api/Vintagestory.API.Common.ActionConsumable.yml b/api/Vintagestory.API.Common.ActionConsumable.yml index f2fe2d01..b02f133f 100644 --- a/api/Vintagestory.API.Common.ActionConsumable.yml +++ b/api/Vintagestory.API.Common.ActionConsumable.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ActionConsumable path: Common/API/Delegates.cs startLine: 26 diff --git a/api/Vintagestory.API.Common.ActiveSlotChangeEventArgs.yml b/api/Vintagestory.API.Common.ActiveSlotChangeEventArgs.yml index 13599aad..1c81e0df 100644 --- a/api/Vintagestory.API.Common.ActiveSlotChangeEventArgs.yml +++ b/api/Vintagestory.API.Common.ActiveSlotChangeEventArgs.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/ActiveSlotChangeEventArgs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ActiveSlotChangeEventArgs path: Common/Entity/Player/ActiveSlotChangeEventArgs.cs startLine: 6 @@ -58,8 +58,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/ActiveSlotChangeEventArgs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromSlot path: Common/Entity/Player/ActiveSlotChangeEventArgs.cs startLine: 11 @@ -89,8 +89,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/ActiveSlotChangeEventArgs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToSlot path: Common/Entity/Player/ActiveSlotChangeEventArgs.cs startLine: 16 @@ -120,8 +120,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/ActiveSlotChangeEventArgs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Entity/Player/ActiveSlotChangeEventArgs.cs startLine: 18 diff --git a/api/Vintagestory.API.Common.AdvancedParticleProperties.yml b/api/Vintagestory.API.Common.AdvancedParticleProperties.yml index 68139340..570934af 100644 --- a/api/Vintagestory.API.Common.AdvancedParticleProperties.yml +++ b/api/Vintagestory.API.Common.AdvancedParticleProperties.yml @@ -61,8 +61,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AdvancedParticleProperties path: Common/Particle/AdvancedParticleProperties.cs startLine: 8 @@ -110,8 +110,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Async path: Common/Particle/AdvancedParticleProperties.cs startLine: 11 @@ -143,8 +143,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RandomVelocityChange path: Common/Particle/AdvancedParticleProperties.cs startLine: 13 @@ -185,8 +185,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DieOnRainHeightmap path: Common/Particle/AdvancedParticleProperties.cs startLine: 16 @@ -228,8 +228,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SecondaryParticles path: Common/Particle/AdvancedParticleProperties.cs startLine: 22 @@ -269,8 +269,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DeathParticles path: Common/Particle/AdvancedParticleProperties.cs startLine: 28 @@ -310,8 +310,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SecondarySpawnInterval path: Common/Particle/AdvancedParticleProperties.cs startLine: 34 @@ -351,8 +351,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Bounciness path: Common/Particle/AdvancedParticleProperties.cs startLine: 37 @@ -393,8 +393,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DieInAir path: Common/Particle/AdvancedParticleProperties.cs startLine: 43 @@ -434,8 +434,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DieInLiquid path: Common/Particle/AdvancedParticleProperties.cs startLine: 49 @@ -475,8 +475,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SwimOnLiquid path: Common/Particle/AdvancedParticleProperties.cs startLine: 52 @@ -514,8 +514,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HsvaColor path: Common/Particle/AdvancedParticleProperties.cs startLine: 59 @@ -553,8 +553,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorByBlock path: Common/Particle/AdvancedParticleProperties.cs startLine: 69 @@ -594,8 +594,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OpacityEvolve path: Common/Particle/AdvancedParticleProperties.cs startLine: 75 @@ -637,8 +637,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RedEvolve path: Common/Particle/AdvancedParticleProperties.cs startLine: 81 @@ -680,8 +680,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GreenEvolve path: Common/Particle/AdvancedParticleProperties.cs startLine: 87 @@ -723,8 +723,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlueEvolve path: Common/Particle/AdvancedParticleProperties.cs startLine: 93 @@ -766,8 +766,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GravityEffect path: Common/Particle/AdvancedParticleProperties.cs startLine: 99 @@ -807,8 +807,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LifeLength path: Common/Particle/AdvancedParticleProperties.cs startLine: 105 @@ -848,8 +848,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PosOffset path: Common/Particle/AdvancedParticleProperties.cs startLine: 112 @@ -887,8 +887,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Quantity path: Common/Particle/AdvancedParticleProperties.cs startLine: 120 @@ -928,8 +928,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Size path: Common/Particle/AdvancedParticleProperties.cs startLine: 126 @@ -969,8 +969,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SizeEvolve path: Common/Particle/AdvancedParticleProperties.cs startLine: 132 @@ -1012,8 +1012,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Velocity path: Common/Particle/AdvancedParticleProperties.cs startLine: 138 @@ -1053,8 +1053,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VelocityEvolve path: Common/Particle/AdvancedParticleProperties.cs startLine: 147 @@ -1096,8 +1096,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParticleModel path: Common/Particle/AdvancedParticleProperties.cs startLine: 153 @@ -1137,8 +1137,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VertexFlags path: Common/Particle/AdvancedParticleProperties.cs startLine: 159 @@ -1180,8 +1180,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SelfPropelled path: Common/Particle/AdvancedParticleProperties.cs startLine: 165 @@ -1221,8 +1221,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TerrainCollision path: Common/Particle/AdvancedParticleProperties.cs startLine: 171 @@ -1262,8 +1262,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WindAffectednes path: Common/Particle/AdvancedParticleProperties.cs startLine: 175 @@ -1301,8 +1301,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: basePos path: Common/Particle/AdvancedParticleProperties.cs startLine: 182 @@ -1330,8 +1330,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: baseVelocity path: Common/Particle/AdvancedParticleProperties.cs startLine: 185 @@ -1357,8 +1357,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: block path: Common/Particle/AdvancedParticleProperties.cs startLine: 190 @@ -1386,8 +1386,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Init path: Common/Particle/AdvancedParticleProperties.cs startLine: 196 @@ -1420,8 +1420,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Color path: Common/Particle/AdvancedParticleProperties.cs startLine: 201 @@ -1449,8 +1449,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRgbaColor path: Common/Particle/AdvancedParticleProperties.cs startLine: 214 @@ -1486,8 +1486,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pos path: Common/Particle/AdvancedParticleProperties.cs startLine: 239 @@ -1520,8 +1520,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetVelocity path: Common/Particle/AdvancedParticleProperties.cs startLine: 268 @@ -1555,8 +1555,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParentVelocity path: Common/Particle/AdvancedParticleProperties.cs startLine: 274 @@ -1587,8 +1587,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WindAffectednesAtPos path: Common/Particle/AdvancedParticleProperties.cs startLine: 277 @@ -1616,8 +1616,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParentVelocityWeight path: Common/Particle/AdvancedParticleProperties.cs startLine: 279 @@ -1648,8 +1648,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Common/Particle/AdvancedParticleProperties.cs startLine: 283 @@ -1682,8 +1682,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Particle/AdvancedParticleProperties.cs startLine: 368 @@ -1719,8 +1719,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: createFromBytes path: Common/Particle/AdvancedParticleProperties.cs startLine: 448 @@ -1752,8 +1752,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Particle/AdvancedParticleProperties.cs startLine: 455 @@ -1780,8 +1780,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeginParticle path: Common/Particle/AdvancedParticleProperties.cs startLine: 477 @@ -1810,8 +1810,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AdvancedParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PrepareForSecondarySpawn path: Common/Particle/AdvancedParticleProperties.cs startLine: 500 diff --git a/api/Vintagestory.API.Common.AirBubbleParticles.yml b/api/Vintagestory.API.Common.AirBubbleParticles.yml index e704ccf1..948199e6 100644 --- a/api/Vintagestory.API.Common.AirBubbleParticles.yml +++ b/api/Vintagestory.API.Common.AirBubbleParticles.yml @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AirBubbleParticles path: Common/Particle/AirBubbleParticles.cs startLine: 7 @@ -90,8 +90,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Async path: Common/Particle/AirBubbleParticles.cs startLine: 9 @@ -123,8 +123,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BasePos path: Common/Particle/AirBubbleParticles.cs startLine: 15 @@ -152,8 +152,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddVelocity path: Common/Particle/AirBubbleParticles.cs startLine: 20 @@ -181,8 +181,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Init path: Common/Particle/AirBubbleParticles.cs startLine: 26 @@ -215,8 +215,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SecondaryParticles path: Common/Particle/AirBubbleParticles.cs startLine: 32 @@ -249,8 +249,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DeathParticles path: Common/Particle/AirBubbleParticles.cs startLine: 37 @@ -283,8 +283,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Bounciness path: Common/Particle/AirBubbleParticles.cs startLine: 39 @@ -315,8 +315,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DieInAir path: Common/Particle/AirBubbleParticles.cs startLine: 45 @@ -349,8 +349,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DieInLiquid path: Common/Particle/AirBubbleParticles.cs startLine: 50 @@ -383,8 +383,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SwimOnLiquid path: Common/Particle/AirBubbleParticles.cs startLine: 55 @@ -417,8 +417,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VertexFlags path: Common/Particle/AirBubbleParticles.cs startLine: 61 @@ -451,8 +451,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GravityEffect path: Common/Particle/AirBubbleParticles.cs startLine: 66 @@ -485,8 +485,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TerrainCollision path: Common/Particle/AirBubbleParticles.cs startLine: 71 @@ -519,8 +519,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LifeLength path: Common/Particle/AirBubbleParticles.cs startLine: 76 @@ -553,8 +553,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OpacityEvolve path: Common/Particle/AirBubbleParticles.cs startLine: 77 @@ -587,8 +587,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RedEvolve path: Common/Particle/AirBubbleParticles.cs startLine: 77 @@ -621,8 +621,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GreenEvolve path: Common/Particle/AirBubbleParticles.cs startLine: 77 @@ -655,8 +655,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlueEvolve path: Common/Particle/AirBubbleParticles.cs startLine: 77 @@ -689,8 +689,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RandomVelocityChange path: Common/Particle/AirBubbleParticles.cs startLine: 78 @@ -721,8 +721,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pos path: Common/Particle/AirBubbleParticles.cs startLine: 79 @@ -755,8 +755,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Range path: Common/Particle/AirBubbleParticles.cs startLine: 81 @@ -782,8 +782,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Quantity path: Common/Particle/AirBubbleParticles.cs startLine: 83 @@ -816,8 +816,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: quantity path: Common/Particle/AirBubbleParticles.cs startLine: 85 @@ -843,8 +843,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: horVelocityMul path: Common/Particle/AirBubbleParticles.cs startLine: 86 @@ -870,8 +870,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRgbaColor path: Common/Particle/AirBubbleParticles.cs startLine: 88 @@ -906,8 +906,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Size path: Common/Particle/AirBubbleParticles.cs startLine: 93 @@ -940,8 +940,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SizeEvolve path: Common/Particle/AirBubbleParticles.cs startLine: 95 @@ -974,8 +974,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetVelocity path: Common/Particle/AirBubbleParticles.cs startLine: 97 @@ -1011,8 +1011,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VelocityEvolve path: Common/Particle/AirBubbleParticles.cs startLine: 108 @@ -1045,8 +1045,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParticleModel path: Common/Particle/AirBubbleParticles.cs startLine: 114 @@ -1079,8 +1079,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SelfPropelled path: Common/Particle/AirBubbleParticles.cs startLine: 120 @@ -1113,8 +1113,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Common/Particle/AirBubbleParticles.cs startLine: 126 @@ -1147,8 +1147,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Particle/AirBubbleParticles.cs startLine: 135 @@ -1184,8 +1184,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeginParticle path: Common/Particle/AirBubbleParticles.cs startLine: 139 @@ -1214,8 +1214,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SecondarySpawnInterval path: Common/Particle/AirBubbleParticles.cs startLine: 141 @@ -1251,8 +1251,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DieOnRainHeightmap path: Common/Particle/AirBubbleParticles.cs startLine: 143 @@ -1284,8 +1284,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PrepareForSecondarySpawn path: Common/Particle/AirBubbleParticles.cs startLine: 145 @@ -1318,8 +1318,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/AirBubbleParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParentVelocity path: Common/Particle/AirBubbleParticles.cs startLine: 149 diff --git a/api/Vintagestory.API.Common.AmbientModifier.yml b/api/Vintagestory.API.Common.AmbientModifier.yml index 66269c2f..ddc19e94 100644 --- a/api/Vintagestory.API.Common.AmbientModifier.yml +++ b/api/Vintagestory.API.Common.AmbientModifier.yml @@ -32,8 +32,8 @@ items: source: remote: path: VintagestoryApi/Common/AmbientModifier.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AmbientModifier path: Common/AmbientModifier.cs startLine: 5 @@ -67,8 +67,8 @@ items: source: remote: path: VintagestoryApi/Common/AmbientModifier.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FlatFogDensity path: Common/AmbientModifier.cs startLine: 7 @@ -94,8 +94,8 @@ items: source: remote: path: VintagestoryApi/Common/AmbientModifier.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FlatFogYPos path: Common/AmbientModifier.cs startLine: 8 @@ -121,8 +121,8 @@ items: source: remote: path: VintagestoryApi/Common/AmbientModifier.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FogMin path: Common/AmbientModifier.cs startLine: 10 @@ -148,8 +148,8 @@ items: source: remote: path: VintagestoryApi/Common/AmbientModifier.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FogDensity path: Common/AmbientModifier.cs startLine: 11 @@ -175,8 +175,8 @@ items: source: remote: path: VintagestoryApi/Common/AmbientModifier.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FogColor path: Common/AmbientModifier.cs startLine: 12 @@ -202,8 +202,8 @@ items: source: remote: path: VintagestoryApi/Common/AmbientModifier.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AmbientColor path: Common/AmbientModifier.cs startLine: 13 @@ -229,8 +229,8 @@ items: source: remote: path: VintagestoryApi/Common/AmbientModifier.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CloudDensity path: Common/AmbientModifier.cs startLine: 14 @@ -256,8 +256,8 @@ items: source: remote: path: VintagestoryApi/Common/AmbientModifier.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CloudBrightness path: Common/AmbientModifier.cs startLine: 15 @@ -283,8 +283,8 @@ items: source: remote: path: VintagestoryApi/Common/AmbientModifier.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LerpSpeed path: Common/AmbientModifier.cs startLine: 17 @@ -310,8 +310,8 @@ items: source: remote: path: VintagestoryApi/Common/AmbientModifier.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SceneBrightness path: Common/AmbientModifier.cs startLine: 18 @@ -337,8 +337,8 @@ items: source: remote: path: VintagestoryApi/Common/AmbientModifier.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FogBrightness path: Common/AmbientModifier.cs startLine: 20 @@ -364,8 +364,8 @@ items: source: remote: path: VintagestoryApi/Common/AmbientModifier.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetLerped path: Common/AmbientModifier.cs startLine: 22 @@ -400,8 +400,8 @@ items: source: remote: path: VintagestoryApi/Common/AmbientModifier.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/AmbientModifier.cs startLine: 41 @@ -428,8 +428,8 @@ items: source: remote: path: VintagestoryApi/Common/AmbientModifier.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DefaultAmbient path: Common/AmbientModifier.cs startLine: 58 @@ -457,8 +457,8 @@ items: source: remote: path: VintagestoryApi/Common/AmbientModifier.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnsurePopulated path: Common/AmbientModifier.cs startLine: 75 @@ -485,8 +485,8 @@ items: source: remote: path: VintagestoryApi/Common/AmbientModifier.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Common/AmbientModifier.cs startLine: 92 @@ -514,8 +514,8 @@ items: source: remote: path: VintagestoryApi/Common/AmbientModifier.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/AmbientModifier.cs startLine: 107 diff --git a/api/Vintagestory.API.Common.AnimCacheEntry.yml b/api/Vintagestory.API.Common.AnimCacheEntry.yml index fe69491d..3c003739 100644 --- a/api/Vintagestory.API.Common.AnimCacheEntry.yml +++ b/api/Vintagestory.API.Common.AnimCacheEntry.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationCache.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AnimCacheEntry path: Common/Model/Animation/AnimationCache.cs startLine: 6 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationCache.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Animations path: Common/Model/Animation/AnimationCache.cs startLine: 11 @@ -82,8 +82,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationCache.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RootElems path: Common/Model/Animation/AnimationCache.cs startLine: 16 @@ -111,8 +111,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationCache.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RootPoses path: Common/Model/Animation/AnimationCache.cs startLine: 21 diff --git a/api/Vintagestory.API.Common.AnimFrameCallback.yml b/api/Vintagestory.API.Common.AnimFrameCallback.yml index 6bc98e3e..4d081768 100644 --- a/api/Vintagestory.API.Common.AnimFrameCallback.yml +++ b/api/Vintagestory.API.Common.AnimFrameCallback.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatorBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AnimFrameCallback path: Common/Model/Animation/AnimatorBase.cs startLine: 9 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatorBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Frame path: Common/Model/Animation/AnimatorBase.cs startLine: 11 @@ -80,8 +80,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatorBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Animation path: Common/Model/Animation/AnimatorBase.cs startLine: 12 @@ -107,8 +107,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatorBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Callback path: Common/Model/Animation/AnimatorBase.cs startLine: 13 diff --git a/api/Vintagestory.API.Common.AnimatableRenderer.yml b/api/Vintagestory.API.Common.AnimatableRenderer.yml index 26a76043..a7160e44 100644 --- a/api/Vintagestory.API.Common.AnimatableRenderer.yml +++ b/api/Vintagestory.API.Common.AnimatableRenderer.yml @@ -39,8 +39,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatableRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AnimatableRenderer path: Common/Model/Animation/AnimatableRenderer.cs startLine: 8 @@ -77,8 +77,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatableRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderOrder path: Common/Model/Animation/AnimatableRenderer.cs startLine: 10 @@ -215,8 +215,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatableRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderRange path: Common/Model/Animation/AnimatableRenderer.cs startLine: 11 @@ -248,8 +248,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatableRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: pos path: Common/Model/Animation/AnimatableRenderer.cs startLine: 13 @@ -275,8 +275,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatableRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: capi path: Common/Model/Animation/AnimatableRenderer.cs startLine: 14 @@ -302,8 +302,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatableRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: animator path: Common/Model/Animation/AnimatableRenderer.cs startLine: 15 @@ -329,8 +329,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatableRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: activeAnimationsByAnimCode path: Common/Model/Animation/AnimatableRenderer.cs startLine: 16 @@ -356,8 +356,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatableRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: mtmeshref path: Common/Model/Animation/AnimatableRenderer.cs startLine: 18 @@ -383,8 +383,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatableRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: meshref path: Common/Model/Animation/AnimatableRenderer.cs startLine: 20 @@ -410,8 +410,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatableRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: textureId path: Common/Model/Animation/AnimatableRenderer.cs startLine: 22 @@ -437,8 +437,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatableRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ModelMat path: Common/Model/Animation/AnimatableRenderer.cs startLine: 24 @@ -464,8 +464,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatableRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldRender path: Common/Model/Animation/AnimatableRenderer.cs startLine: 26 @@ -491,8 +491,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatableRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StabilityAffected path: Common/Model/Animation/AnimatableRenderer.cs startLine: 27 @@ -518,8 +518,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatableRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LightAffected path: Common/Model/Animation/AnimatableRenderer.cs startLine: 28 @@ -545,8 +545,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatableRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FogAffectedness path: Common/Model/Animation/AnimatableRenderer.cs startLine: 29 @@ -572,8 +572,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatableRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: rotationDeg path: Common/Model/Animation/AnimatableRenderer.cs startLine: 30 @@ -599,8 +599,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatableRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ScaleX path: Common/Model/Animation/AnimatableRenderer.cs startLine: 32 @@ -626,8 +626,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatableRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ScaleY path: Common/Model/Animation/AnimatableRenderer.cs startLine: 33 @@ -653,8 +653,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatableRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ScaleZ path: Common/Model/Animation/AnimatableRenderer.cs startLine: 34 @@ -680,8 +680,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatableRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: renderColor path: Common/Model/Animation/AnimatableRenderer.cs startLine: 36 @@ -707,8 +707,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatableRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: backfaceCulling path: Common/Model/Animation/AnimatableRenderer.cs startLine: 37 @@ -734,8 +734,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatableRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Model/Animation/AnimatableRenderer.cs startLine: 39 @@ -792,8 +792,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatableRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Model/Animation/AnimatableRenderer.cs startLine: 59 @@ -836,8 +836,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatableRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnRenderFrame path: Common/Model/Animation/AnimatableRenderer.cs startLine: 77 @@ -875,8 +875,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatableRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Common/Model/Animation/AnimatableRenderer.cs startLine: 161 diff --git a/api/Vintagestory.API.Common.Animation.yml b/api/Vintagestory.API.Common.Animation.yml index 8c412a3d..d2b19750 100644 --- a/api/Vintagestory.API.Common.Animation.yml +++ b/api/Vintagestory.API.Common.Animation.yml @@ -33,8 +33,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/Animation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Animation path: Common/Model/Animation/Animation.cs startLine: 43 @@ -105,8 +105,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/Animation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: QuantityFrames path: Common/Model/Animation/Animation.cs startLine: 47 @@ -142,8 +142,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/Animation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Name path: Common/Model/Animation/Animation.cs startLine: 50 @@ -179,8 +179,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/Animation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Common/Model/Animation/Animation.cs startLine: 53 @@ -216,8 +216,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/Animation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Version path: Common/Model/Animation/Animation.cs startLine: 56 @@ -253,8 +253,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/Animation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EaseAnimationSpeed path: Common/Model/Animation/Animation.cs startLine: 59 @@ -290,8 +290,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/Animation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: KeyFrames path: Common/Model/Animation/Animation.cs startLine: 62 @@ -327,8 +327,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/Animation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnActivityStopped path: Common/Model/Animation/Animation.cs startLine: 65 @@ -364,8 +364,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/Animation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnAnimationEnd path: Common/Model/Animation/Animation.cs startLine: 68 @@ -401,8 +401,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/Animation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CodeCrc32 path: Common/Model/Animation/Animation.cs startLine: 72 @@ -428,8 +428,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/Animation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PrevNextKeyFrameByFrame path: Common/Model/Animation/Animation.cs startLine: 74 @@ -455,8 +455,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/Animation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: jointsDone path: Common/Model/Animation/Animation.cs startLine: 77 @@ -482,8 +482,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/Animation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GenerateAllFrames path: Common/Model/Animation/Animation.cs startLine: 94 @@ -523,8 +523,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/Animation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GenerateFrame path: Common/Model/Animation/Animation.cs startLine: 141 @@ -567,8 +567,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/Animation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GenerateFrameForElement path: Common/Model/Animation/Animation.cs startLine: 173 @@ -603,8 +603,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/Animation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: lerpKeyFrameElement path: Common/Model/Animation/Animation.cs startLine: 216 @@ -643,8 +643,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/Animation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: getTwoKeyFramesElementForFlag path: Common/Model/Animation/Animation.cs startLine: 244 @@ -683,8 +683,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/Animation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: getLeftRightResolvedFrame path: Common/Model/Animation/Animation.cs startLine: 304 @@ -721,8 +721,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/Animation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Model/Animation/Animation.cs startLine: 334 diff --git a/api/Vintagestory.API.Common.AnimationCache.yml b/api/Vintagestory.API.Common.AnimationCache.yml index 8973b67c..c5c47d55 100644 --- a/api/Vintagestory.API.Common.AnimationCache.yml +++ b/api/Vintagestory.API.Common.AnimationCache.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationCache.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AnimationCache path: Common/Model/Animation/AnimationCache.cs startLine: 24 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationCache.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClearCache path: Common/Model/Animation/AnimationCache.cs startLine: 30 @@ -85,8 +85,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationCache.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClearCache path: Common/Model/Animation/AnimationCache.cs startLine: 40 @@ -120,8 +120,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationCache.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InitManager path: Common/Model/Animation/AnimationCache.cs startLine: 57 diff --git a/api/Vintagestory.API.Common.AnimationFrame.yml b/api/Vintagestory.API.Common.AnimationFrame.yml index a3f096de..b518452c 100644 --- a/api/Vintagestory.API.Common.AnimationFrame.yml +++ b/api/Vintagestory.API.Common.AnimationFrame.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationFrame.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AnimationFrame path: Common/Model/Animation/AnimationFrame.cs startLine: 7 @@ -57,8 +57,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationFrame.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FrameNumber path: Common/Model/Animation/AnimationFrame.cs startLine: 12 @@ -86,8 +86,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationFrame.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: animTransforms path: Common/Model/Animation/AnimationFrame.cs startLine: 17 @@ -115,8 +115,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationFrame.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: transformationMatrices path: Common/Model/Animation/AnimationFrame.cs startLine: 22 @@ -144,8 +144,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationFrame.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RootElementTransforms path: Common/Model/Animation/AnimationFrame.cs startLine: 27 @@ -173,8 +173,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationFrame.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Model/Animation/AnimationFrame.cs startLine: 30 @@ -202,8 +202,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationFrame.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetTransform path: Common/Model/Animation/AnimationFrame.cs startLine: 44 @@ -240,8 +240,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationFrame.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FinalizeMatrices path: Common/Model/Animation/AnimationFrame.cs startLine: 55 diff --git a/api/Vintagestory.API.Common.AnimationJoint.yml b/api/Vintagestory.API.Common.AnimationJoint.yml index 50aa986f..1fbe3188 100644 --- a/api/Vintagestory.API.Common.AnimationJoint.yml +++ b/api/Vintagestory.API.Common.AnimationJoint.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationJoint.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AnimationJoint path: Common/Model/Animation/AnimationJoint.cs startLine: 5 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationJoint.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: JointId path: Common/Model/Animation/AnimationJoint.cs startLine: 10 @@ -82,8 +82,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationJoint.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Element path: Common/Model/Animation/AnimationJoint.cs startLine: 15 @@ -111,8 +111,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationJoint.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ApplyInverseTransform path: Common/Model/Animation/AnimationJoint.cs startLine: 22 diff --git a/api/Vintagestory.API.Common.AnimationKeyFrame.yml b/api/Vintagestory.API.Common.AnimationKeyFrame.yml index 30277ca0..8ce3fab6 100644 --- a/api/Vintagestory.API.Common.AnimationKeyFrame.yml +++ b/api/Vintagestory.API.Common.AnimationKeyFrame.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationKeyFrame.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AnimationKeyFrame path: Common/Model/Animation/AnimationKeyFrame.cs startLine: 5 @@ -66,8 +66,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationKeyFrame.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Frame path: Common/Model/Animation/AnimationKeyFrame.cs startLine: 12 @@ -105,8 +105,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationKeyFrame.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Elements path: Common/Model/Animation/AnimationKeyFrame.cs startLine: 18 @@ -144,8 +144,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationKeyFrame.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Resolve path: Common/Model/Animation/AnimationKeyFrame.cs startLine: 27 @@ -179,8 +179,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationKeyFrame.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Model/Animation/AnimationKeyFrame.cs startLine: 66 diff --git a/api/Vintagestory.API.Common.AnimationKeyFrameElement.yml b/api/Vintagestory.API.Common.AnimationKeyFrameElement.yml index 1b58c652..48360854 100644 --- a/api/Vintagestory.API.Common.AnimationKeyFrameElement.yml +++ b/api/Vintagestory.API.Common.AnimationKeyFrameElement.yml @@ -36,8 +36,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationKeyFrameElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AnimationKeyFrameElement path: Common/Model/Animation/AnimationKeyFrameElement.cs startLine: 4 @@ -83,8 +83,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationKeyFrameElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OffsetX path: Common/Model/Animation/AnimationKeyFrameElement.cs startLine: 8 @@ -120,8 +120,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationKeyFrameElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OffsetY path: Common/Model/Animation/AnimationKeyFrameElement.cs startLine: 10 @@ -157,8 +157,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationKeyFrameElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OffsetZ path: Common/Model/Animation/AnimationKeyFrameElement.cs startLine: 12 @@ -194,8 +194,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationKeyFrameElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StretchX path: Common/Model/Animation/AnimationKeyFrameElement.cs startLine: 15 @@ -231,8 +231,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationKeyFrameElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StretchY path: Common/Model/Animation/AnimationKeyFrameElement.cs startLine: 17 @@ -268,8 +268,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationKeyFrameElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StretchZ path: Common/Model/Animation/AnimationKeyFrameElement.cs startLine: 19 @@ -305,8 +305,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationKeyFrameElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotationX path: Common/Model/Animation/AnimationKeyFrameElement.cs startLine: 21 @@ -342,8 +342,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationKeyFrameElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotationY path: Common/Model/Animation/AnimationKeyFrameElement.cs startLine: 23 @@ -379,8 +379,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationKeyFrameElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotationZ path: Common/Model/Animation/AnimationKeyFrameElement.cs startLine: 25 @@ -416,8 +416,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationKeyFrameElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OriginX path: Common/Model/Animation/AnimationKeyFrameElement.cs startLine: 27 @@ -453,8 +453,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationKeyFrameElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OriginY path: Common/Model/Animation/AnimationKeyFrameElement.cs startLine: 29 @@ -490,8 +490,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationKeyFrameElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OriginZ path: Common/Model/Animation/AnimationKeyFrameElement.cs startLine: 31 @@ -527,8 +527,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationKeyFrameElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotShortestDistanceX path: Common/Model/Animation/AnimationKeyFrameElement.cs startLine: 33 @@ -564,8 +564,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationKeyFrameElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotShortestDistanceY path: Common/Model/Animation/AnimationKeyFrameElement.cs startLine: 35 @@ -601,8 +601,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationKeyFrameElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotShortestDistanceZ path: Common/Model/Animation/AnimationKeyFrameElement.cs startLine: 37 @@ -638,8 +638,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationKeyFrameElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ForElement path: Common/Model/Animation/AnimationKeyFrameElement.cs startLine: 40 @@ -665,8 +665,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationKeyFrameElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AnySet path: Common/Model/Animation/AnimationKeyFrameElement.cs startLine: 43 @@ -694,8 +694,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationKeyFrameElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PositionSet path: Common/Model/Animation/AnimationKeyFrameElement.cs startLine: 48 @@ -723,8 +723,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationKeyFrameElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StretchSet path: Common/Model/Animation/AnimationKeyFrameElement.cs startLine: 52 @@ -752,8 +752,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationKeyFrameElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotationSet path: Common/Model/Animation/AnimationKeyFrameElement.cs startLine: 56 @@ -781,8 +781,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationKeyFrameElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OriginSet path: Common/Model/Animation/AnimationKeyFrameElement.cs startLine: 60 diff --git a/api/Vintagestory.API.Common.AnimationManager.yml b/api/Vintagestory.API.Common.AnimationManager.yml index edc5aac5..8b629f81 100644 --- a/api/Vintagestory.API.Common.AnimationManager.yml +++ b/api/Vintagestory.API.Common.AnimationManager.yml @@ -39,8 +39,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AnimationManager path: Common/Model/Animation/AnimationManager.cs startLine: 10 @@ -79,8 +79,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: api path: Common/Model/Animation/AnimationManager.cs startLine: 12 @@ -106,8 +106,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: capi path: Common/Model/Animation/AnimationManager.cs startLine: 13 @@ -133,8 +133,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AnimationsDirty path: Common/Model/Animation/AnimationManager.cs startLine: 18 @@ -166,8 +166,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Animator path: Common/Model/Animation/AnimationManager.cs startLine: 23 @@ -199,8 +199,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HeadController path: Common/Model/Animation/AnimationManager.cs startLine: 28 @@ -232,8 +232,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ActiveAnimationsByAnimCode path: Common/Model/Animation/AnimationManager.cs startLine: 33 @@ -261,8 +261,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Triggers path: Common/Model/Animation/AnimationManager.cs startLine: 36 @@ -288,8 +288,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: entity path: Common/Model/Animation/AnimationManager.cs startLine: 41 @@ -317,8 +317,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Model/Animation/AnimationManager.cs startLine: 43 @@ -346,8 +346,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Init path: Common/Model/Animation/AnimationManager.cs startLine: 53 @@ -383,8 +383,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsAnimationActive path: Common/Model/Animation/AnimationManager.cs startLine: 62 @@ -420,8 +420,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ResetAnimation path: Common/Model/Animation/AnimationManager.cs startLine: 76 @@ -457,8 +457,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartAnimation path: Common/Model/Animation/AnimationManager.cs startLine: 91 @@ -496,8 +496,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartAnimation path: Common/Model/Animation/AnimationManager.cs startLine: 116 @@ -538,8 +538,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StopAnimation path: Common/Model/Animation/AnimationManager.cs startLine: 137 @@ -575,8 +575,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnReceivedServerAnimations path: Common/Model/Animation/AnimationManager.cs startLine: 171 @@ -618,8 +618,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: onReceivedServerAnimation path: Common/Model/Animation/AnimationManager.cs startLine: 249 @@ -647,8 +647,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToAttributes path: Common/Model/Animation/AnimationManager.cs startLine: 259 @@ -687,8 +687,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromAttributes path: Common/Model/Animation/AnimationManager.cs startLine: 298 @@ -727,8 +727,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnServerTick path: Common/Model/Animation/AnimationManager.cs startLine: 321 @@ -764,8 +764,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnClientFrame path: Common/Model/Animation/AnimationManager.cs startLine: 332 @@ -801,8 +801,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterFrameCallback path: Common/Model/Animation/AnimationManager.cs startLine: 348 @@ -833,8 +833,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Common/Model/Animation/AnimationManager.cs startLine: 377 @@ -863,8 +863,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnAnimationStopped path: Common/Model/Animation/AnimationManager.cs startLine: 382 diff --git a/api/Vintagestory.API.Common.AnimationMetaData.yml b/api/Vintagestory.API.Common.AnimationMetaData.yml index bf6ceb29..c241c707 100644 --- a/api/Vintagestory.API.Common.AnimationMetaData.yml +++ b/api/Vintagestory.API.Common.AnimationMetaData.yml @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AnimationMetaData path: Common/Model/Animation/AnimationMetaData.cs startLine: 49 @@ -76,8 +76,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Common/Model/Animation/AnimationMetaData.cs startLine: 55 @@ -115,8 +115,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Attributes path: Common/Model/Animation/AnimationMetaData.cs startLine: 57 @@ -161,8 +161,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Animation path: Common/Model/Animation/AnimationMetaData.cs startLine: 62 @@ -200,8 +200,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Weight path: Common/Model/Animation/AnimationMetaData.cs startLine: 64 @@ -237,8 +237,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ElementWeight path: Common/Model/Animation/AnimationMetaData.cs startLine: 66 @@ -274,8 +274,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AnimationSpeed path: Common/Model/Animation/AnimationMetaData.cs startLine: 68 @@ -311,8 +311,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MulWithWalkSpeed path: Common/Model/Animation/AnimationMetaData.cs startLine: 70 @@ -348,8 +348,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WeightCapFactor path: Common/Model/Animation/AnimationMetaData.cs startLine: 78 @@ -394,8 +394,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EaseInSpeed path: Common/Model/Animation/AnimationMetaData.cs startLine: 83 @@ -433,8 +433,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EaseOutSpeed path: Common/Model/Animation/AnimationMetaData.cs startLine: 88 @@ -472,8 +472,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TriggeredBy path: Common/Model/Animation/AnimationMetaData.cs startLine: 90 @@ -509,8 +509,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlendMode path: Common/Model/Animation/AnimationMetaData.cs startLine: 92 @@ -546,8 +546,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ElementBlendMode path: Common/Model/Animation/AnimationMetaData.cs startLine: 94 @@ -583,8 +583,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SupressDefaultAnimation path: Common/Model/Animation/AnimationMetaData.cs startLine: 96 @@ -620,8 +620,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HoldEyePosAfterEasein path: Common/Model/Animation/AnimationMetaData.cs startLine: 98 @@ -657,8 +657,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClientSide path: Common/Model/Animation/AnimationMetaData.cs startLine: 103 @@ -696,8 +696,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartFrameOnce path: Common/Model/Animation/AnimationMetaData.cs startLine: 105 @@ -723,8 +723,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CodeCrc32 path: Common/Model/Animation/AnimationMetaData.cs startLine: 108 @@ -750,8 +750,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WasStartedFromTrigger path: Common/Model/Animation/AnimationMetaData.cs startLine: 109 @@ -777,8 +777,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCurrentAnimationSpeed path: Common/Model/Animation/AnimationMetaData.cs startLine: 112 @@ -811,8 +811,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Init path: Common/Model/Animation/AnimationMetaData.cs startLine: 117 @@ -839,8 +839,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCrc32 path: Common/Model/Animation/AnimationMetaData.cs startLine: 140 @@ -873,8 +873,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Matches path: Common/Model/Animation/AnimationMetaData.cs startLine: 146 @@ -907,8 +907,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Model/Animation/AnimationMetaData.cs startLine: 151 @@ -935,8 +935,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Common/Model/Animation/AnimationMetaData.cs startLine: 178 @@ -974,8 +974,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHashCode path: Common/Model/Animation/AnimationMetaData.cs startLine: 185 @@ -1006,8 +1006,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Common/Model/Animation/AnimationMetaData.cs startLine: 191 @@ -1035,8 +1035,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Model/Animation/AnimationMetaData.cs startLine: 241 diff --git a/api/Vintagestory.API.Common.AnimationTrigger.yml b/api/Vintagestory.API.Common.AnimationTrigger.yml index f662e369..f2369f81 100644 --- a/api/Vintagestory.API.Common.AnimationTrigger.yml +++ b/api/Vintagestory.API.Common.AnimationTrigger.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AnimationTrigger path: Common/Model/Animation/AnimationMetaData.cs startLine: 29 @@ -54,8 +54,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnControls path: Common/Model/Animation/AnimationMetaData.cs startLine: 32 @@ -91,8 +91,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MatchExact path: Common/Model/Animation/AnimationMetaData.cs startLine: 34 @@ -128,8 +128,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DefaultAnim path: Common/Model/Animation/AnimationMetaData.cs startLine: 36 @@ -165,8 +165,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Model/Animation/AnimationMetaData.cs startLine: 38 diff --git a/api/Vintagestory.API.Common.AnimationUtil.yml b/api/Vintagestory.API.Common.AnimationUtil.yml index f74424d9..723770c2 100644 --- a/api/Vintagestory.API.Common.AnimationUtil.yml +++ b/api/Vintagestory.API.Common.AnimationUtil.yml @@ -39,8 +39,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AnimationUtil path: Common/Model/Animation/AnimationUtil.cs startLine: 8 @@ -77,8 +77,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: animator path: Common/Model/Animation/AnimationUtil.cs startLine: 10 @@ -104,8 +104,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: renderer path: Common/Model/Animation/AnimationUtil.cs startLine: 11 @@ -131,8 +131,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: activeAnimationsByAnimCode path: Common/Model/Animation/AnimationUtil.cs startLine: 12 @@ -158,8 +158,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: api path: Common/Model/Animation/AnimationUtil.cs startLine: 13 @@ -185,8 +185,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: stopRenderTriggered path: Common/Model/Animation/AnimationUtil.cs startLine: 14 @@ -212,8 +212,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: capi path: Common/Model/Animation/AnimationUtil.cs startLine: 15 @@ -239,8 +239,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: position path: Common/Model/Animation/AnimationUtil.cs startLine: 16 @@ -266,8 +266,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderTextureId path: Common/Model/Animation/AnimationUtil.cs startLine: 19 @@ -295,8 +295,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderOrder path: Common/Model/Animation/AnimationUtil.cs startLine: 21 @@ -433,8 +433,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderRange path: Common/Model/Animation/AnimationUtil.cs startLine: 22 @@ -466,8 +466,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Model/Animation/AnimationUtil.cs startLine: 24 @@ -500,8 +500,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InitializeShapeAndAnimator path: Common/Model/Animation/AnimationUtil.cs startLine: 32 @@ -540,8 +540,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InitializeAnimator path: Common/Model/Animation/AnimationUtil.cs startLine: 53 @@ -580,8 +580,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InitializeAnimator path: Common/Model/Animation/AnimationUtil.cs startLine: 76 @@ -632,8 +632,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InitializeAnimator path: Common/Model/Animation/AnimationUtil.cs startLine: 85 @@ -672,8 +672,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InitializeAnimatorServer path: Common/Model/Animation/AnimationUtil.cs startLine: 93 @@ -706,8 +706,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AnimationTickServer path: Common/Model/Animation/AnimationUtil.cs startLine: 101 @@ -738,8 +738,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnRenderFrame path: Common/Model/Animation/AnimationUtil.cs startLine: 111 @@ -778,8 +778,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartAnimation path: Common/Model/Animation/AnimationUtil.cs startLine: 127 @@ -809,8 +809,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnAnimationsStateChange path: Common/Model/Animation/AnimationUtil.cs startLine: 140 @@ -841,8 +841,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StopAnimation path: Common/Model/Animation/AnimationUtil.cs startLine: 146 @@ -873,8 +873,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAnimator path: Common/Model/Animation/AnimationUtil.cs startLine: 152 @@ -911,8 +911,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CacheInvTransforms path: Common/Model/Animation/AnimationUtil.cs startLine: 205 @@ -943,8 +943,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Common/Model/Animation/AnimationUtil.cs startLine: 216 diff --git a/api/Vintagestory.API.Common.AnimatorBase.yml b/api/Vintagestory.API.Common.AnimatorBase.yml index 4a1bbc5e..ae602fc8 100644 --- a/api/Vintagestory.API.Common.AnimatorBase.yml +++ b/api/Vintagestory.API.Common.AnimatorBase.yml @@ -34,8 +34,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatorBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AnimatorBase path: Common/Model/Animation/AnimatorBase.cs startLine: 19 @@ -75,8 +75,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatorBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: identMat4x3 path: Common/Model/Animation/AnimatorBase.cs startLine: 24 @@ -102,8 +102,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatorBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: anims path: Common/Model/Animation/AnimatorBase.cs startLine: 31 @@ -129,8 +129,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatorBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TransformationMatrices4x3 path: Common/Model/Animation/AnimatorBase.cs startLine: 39 @@ -158,8 +158,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatorBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TransformationMatricesDefaultPose4x3 path: Common/Model/Animation/AnimatorBase.cs startLine: 44 @@ -187,8 +187,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatorBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AttachmentPointByCode path: Common/Model/Animation/AnimatorBase.cs startLine: 48 @@ -214,8 +214,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatorBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: activeAnimCount path: Common/Model/Animation/AnimatorBase.cs startLine: 50 @@ -241,8 +241,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatorBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurAnims path: Common/Model/Animation/AnimatorBase.cs startLine: 51 @@ -268,8 +268,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatorBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CalculateMatrices path: Common/Model/Animation/AnimatorBase.cs startLine: 53 @@ -301,8 +301,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatorBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Matrices4x3 path: Common/Model/Animation/AnimatorBase.cs startLine: 55 @@ -334,8 +334,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatorBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ActiveAnimationCount path: Common/Model/Animation/AnimatorBase.cs startLine: 62 @@ -367,8 +367,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatorBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RunningAnimations path: Common/Model/Animation/AnimatorBase.cs startLine: 67 @@ -400,8 +400,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatorBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAnimationState path: Common/Model/Animation/AnimatorBase.cs startLine: 69 @@ -437,8 +437,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatorBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Model/Animation/AnimatorBase.cs startLine: 84 @@ -473,8 +473,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatorBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnFrame path: Common/Model/Animation/AnimatorBase.cs startLine: 113 @@ -513,8 +513,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatorBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DumpCurrentState path: Common/Model/Animation/AnimatorBase.cs startLine: 203 @@ -544,8 +544,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatorBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AnimNowActive path: Common/Model/Animation/AnimatorBase.cs startLine: 227 @@ -575,8 +575,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatorBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: calculateMatrices path: Common/Model/Animation/AnimatorBase.cs startLine: 238 @@ -607,8 +607,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatorBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAttachmentPointPose path: Common/Model/Animation/AnimatorBase.cs startLine: 241 @@ -647,8 +647,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatorBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetPosebyName path: Common/Model/Animation/AnimatorBase.cs startLine: 248 diff --git a/api/Vintagestory.API.Common.ArgumentParserBase.yml b/api/Vintagestory.API.Common.ArgumentParserBase.yml index 7fd423be..26ea496f 100644 --- a/api/Vintagestory.API.Common.ArgumentParserBase.yml +++ b/api/Vintagestory.API.Common.ArgumentParserBase.yml @@ -35,8 +35,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ArgumentParserBase path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 166 @@ -94,8 +94,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: lastErrorMessage path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 168 @@ -121,8 +121,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: isMandatoryArg path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 169 @@ -148,8 +148,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: argCount path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 170 @@ -175,8 +175,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: argName path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 171 @@ -202,8 +202,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 173 @@ -236,8 +236,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LastErrorMessage path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 179 @@ -268,8 +268,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ArgumentName path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 180 @@ -300,8 +300,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsMandatoryArg path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 181 @@ -332,8 +332,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsMissing path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 182 @@ -364,8 +364,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ArgCount path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 183 @@ -397,8 +397,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValidRange path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 185 @@ -431,8 +431,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 190 @@ -462,8 +462,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 191 @@ -499,8 +499,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSyntax path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 193 @@ -530,8 +530,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSyntaxUnformatted path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 197 @@ -558,8 +558,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSyntaxExplanation path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 201 @@ -595,8 +595,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetLastError path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 206 @@ -623,8 +623,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 211 @@ -666,8 +666,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: parseSubArgs path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 214 @@ -700,8 +700,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 245 diff --git a/api/Vintagestory.API.Common.AssetCategory.yml b/api/Vintagestory.API.Common.AssetCategory.yml index f80171e3..ef9e83ac 100644 --- a/api/Vintagestory.API.Common.AssetCategory.yml +++ b/api/Vintagestory.API.Common.AssetCategory.yml @@ -38,8 +38,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetCategory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AssetCategory path: Common/Assets/AssetCategory.cs startLine: 4 @@ -72,8 +72,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetCategory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: categories path: Common/Assets/AssetCategory.cs startLine: 6 @@ -99,8 +99,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetCategory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: blocktypes path: Common/Assets/AssetCategory.cs startLine: 8 @@ -126,8 +126,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetCategory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: itemtypes path: Common/Assets/AssetCategory.cs startLine: 9 @@ -153,8 +153,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetCategory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: lang path: Common/Assets/AssetCategory.cs startLine: 10 @@ -180,8 +180,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetCategory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: patches path: Common/Assets/AssetCategory.cs startLine: 12 @@ -207,8 +207,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetCategory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: config path: Common/Assets/AssetCategory.cs startLine: 13 @@ -234,8 +234,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetCategory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: worldproperties path: Common/Assets/AssetCategory.cs startLine: 14 @@ -261,8 +261,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetCategory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: sounds path: Common/Assets/AssetCategory.cs startLine: 15 @@ -288,8 +288,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetCategory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: shapes path: Common/Assets/AssetCategory.cs startLine: 16 @@ -315,8 +315,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetCategory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: shaders path: Common/Assets/AssetCategory.cs startLine: 18 @@ -342,8 +342,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetCategory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: shaderincludes path: Common/Assets/AssetCategory.cs startLine: 19 @@ -369,8 +369,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetCategory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: textures path: Common/Assets/AssetCategory.cs startLine: 20 @@ -396,8 +396,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetCategory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: music path: Common/Assets/AssetCategory.cs startLine: 21 @@ -423,8 +423,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetCategory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: dialog path: Common/Assets/AssetCategory.cs startLine: 22 @@ -450,8 +450,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetCategory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: recipes path: Common/Assets/AssetCategory.cs startLine: 24 @@ -477,8 +477,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetCategory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: worldgen path: Common/Assets/AssetCategory.cs startLine: 25 @@ -504,8 +504,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetCategory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: entities path: Common/Assets/AssetCategory.cs startLine: 26 @@ -531,8 +531,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetCategory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Common/Assets/AssetCategory.cs startLine: 33 @@ -562,8 +562,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetCategory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SideType path: Common/Assets/AssetCategory.cs startLine: 38 @@ -593,8 +593,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetCategory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AffectsGameplay path: Common/Assets/AssetCategory.cs startLine: 43 @@ -624,8 +624,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetCategory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Assets/AssetCategory.cs startLine: 45 @@ -660,8 +660,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetCategory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Common/Assets/AssetCategory.cs startLine: 53 @@ -692,8 +692,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetCategory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromCode path: Common/Assets/AssetCategory.cs startLine: 63 diff --git a/api/Vintagestory.API.Common.AssetLocation.yml b/api/Vintagestory.API.Common.AssetLocation.yml index 38641bb8..872cacb6 100644 --- a/api/Vintagestory.API.Common.AssetLocation.yml +++ b/api/Vintagestory.API.Common.AssetLocation.yml @@ -60,8 +60,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AssetLocation path: Common/Assets/AssetLocation.cs startLine: 111 @@ -115,8 +115,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LocationSeparator path: Common/Assets/AssetLocation.cs startLine: 115 @@ -142,8 +142,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Domain path: Common/Assets/AssetLocation.cs startLine: 122 @@ -171,8 +171,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Path path: Common/Assets/AssetLocation.cs startLine: 127 @@ -200,8 +200,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsWildCard path: Common/Assets/AssetLocation.cs startLine: 132 @@ -229,8 +229,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EndsWithWildCard path: Common/Assets/AssetLocation.cs startLine: 133 @@ -258,8 +258,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Assets/AssetLocation.cs startLine: 136 @@ -287,8 +287,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Assets/AssetLocation.cs startLine: 146 @@ -325,8 +325,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Assets/AssetLocation.cs startLine: 177 @@ -361,8 +361,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Create path: Common/Assets/AssetLocation.cs startLine: 189 @@ -404,8 +404,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Valid path: Common/Assets/AssetLocation.cs startLine: 204 @@ -438,8 +438,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsChild path: Common/Assets/AssetLocation.cs startLine: 215 @@ -469,8 +469,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeginsWith path: Common/Assets/AssetLocation.cs startLine: 221 @@ -505,8 +505,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PathStartsWith path: Common/Assets/AssetLocation.cs startLine: 231 @@ -539,8 +539,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToShortString path: Common/Assets/AssetLocation.cs startLine: 236 @@ -567,8 +567,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShortDomain path: Common/Assets/AssetLocation.cs startLine: 246 @@ -595,8 +595,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FirstPathPart path: Common/Assets/AssetLocation.cs startLine: 257 @@ -633,8 +633,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FirstCodePart path: Common/Assets/AssetLocation.cs startLine: 263 @@ -661,8 +661,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SecondCodePart path: Common/Assets/AssetLocation.cs startLine: 269 @@ -689,8 +689,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CodePartsAfterSecond path: Common/Assets/AssetLocation.cs startLine: 276 @@ -717,8 +717,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Category path: Common/Assets/AssetLocation.cs startLine: 286 @@ -748,8 +748,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithPathPrefix path: Common/Assets/AssetLocation.cs startLine: 291 @@ -782,8 +782,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithPathPrefixOnce path: Common/Assets/AssetLocation.cs startLine: 297 @@ -816,8 +816,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithLocationPrefixOnce path: Common/Assets/AssetLocation.cs startLine: 306 @@ -847,8 +847,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithPathAppendix path: Common/Assets/AssetLocation.cs startLine: 312 @@ -881,8 +881,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithoutPathAppendix path: Common/Assets/AssetLocation.cs startLine: 318 @@ -915,8 +915,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithPathAppendixOnce path: Common/Assets/AssetLocation.cs startLine: 327 @@ -949,8 +949,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HasDomain path: Common/Assets/AssetLocation.cs startLine: 340 @@ -980,8 +980,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetName path: Common/Assets/AssetLocation.cs startLine: 349 @@ -1011,8 +1011,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveEnding path: Common/Assets/AssetLocation.cs startLine: 358 @@ -1039,8 +1039,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PathOmittingPrefixAndSuffix path: Common/Assets/AssetLocation.cs startLine: 363 @@ -1075,8 +1075,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EndVariant path: Common/Assets/AssetLocation.cs startLine: 372 @@ -1105,8 +1105,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Assets/AssetLocation.cs startLine: 384 @@ -1136,8 +1136,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CloneWithoutPrefixAndEnding path: Common/Assets/AssetLocation.cs startLine: 389 @@ -1170,8 +1170,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CopyWithPath path: Common/Assets/AssetLocation.cs startLine: 401 @@ -1208,8 +1208,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CopyWithPathPrefixAndAppendix path: Common/Assets/AssetLocation.cs startLine: 406 @@ -1244,8 +1244,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CopyWithPathPrefixAndAppendixOnce path: Common/Assets/AssetLocation.cs startLine: 411 @@ -1280,8 +1280,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithPath path: Common/Assets/AssetLocation.cs startLine: 428 @@ -1318,8 +1318,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: toLocations path: Common/Assets/AssetLocation.cs startLine: 439 @@ -1356,8 +1356,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHashCode path: Common/Assets/AssetLocation.cs startLine: 449 @@ -1388,8 +1388,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Common/Assets/AssetLocation.cs startLine: 454 @@ -1425,8 +1425,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Common/Assets/AssetLocation.cs startLine: 460 @@ -1464,8 +1464,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Equality path: Common/Assets/AssetLocation.cs startLine: 465 @@ -1500,8 +1500,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Inequality path: Common/Assets/AssetLocation.cs startLine: 475 @@ -1536,8 +1536,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Common/Assets/AssetLocation.cs startLine: 480 @@ -1568,8 +1568,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CompareTo path: Common/Assets/AssetLocation.cs startLine: 485 diff --git a/api/Vintagestory.API.Common.AssetLocationAndSource.yml b/api/Vintagestory.API.Common.AssetLocationAndSource.yml index 7b49b3be..de36d4ce 100644 --- a/api/Vintagestory.API.Common.AssetLocationAndSource.yml +++ b/api/Vintagestory.API.Common.AssetLocationAndSource.yml @@ -26,8 +26,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AssetLocationAndSource path: Common/Assets/AssetLocation.cs startLine: 53 @@ -112,8 +112,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddToAllAtlasses path: Common/Assets/AssetLocation.cs startLine: 56 @@ -139,8 +139,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Source path: Common/Assets/AssetLocation.cs startLine: 61 @@ -168,8 +168,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: loadedAlready path: Common/Assets/AssetLocation.cs startLine: 65 @@ -197,8 +197,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Assets/AssetLocation.cs startLine: 67 @@ -229,8 +229,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Assets/AssetLocation.cs startLine: 71 @@ -261,8 +261,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Assets/AssetLocation.cs startLine: 75 @@ -299,8 +299,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Assets/AssetLocation.cs startLine: 80 @@ -341,8 +341,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Assets/AssetLocation.cs startLine: 85 @@ -375,8 +375,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Assets/AssetLocation.cs startLine: 90 @@ -411,8 +411,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Assets/AssetLocation.cs startLine: 95 @@ -459,8 +459,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Assets/AssetLocation.cs startLine: 101 diff --git a/api/Vintagestory.API.Common.AssetLocationJsonParser.yml b/api/Vintagestory.API.Common.AssetLocationJsonParser.yml index c850c53c..1839a52c 100644 --- a/api/Vintagestory.API.Common.AssetLocationJsonParser.yml +++ b/api/Vintagestory.API.Common.AssetLocationJsonParser.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Util/JsonUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AssetLocationJsonParser path: Util/JsonUtil.cs startLine: 142 @@ -57,8 +57,8 @@ items: source: remote: path: VintagestoryApi/Util/JsonUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Util/JsonUtil.cs startLine: 146 @@ -89,8 +89,8 @@ items: source: remote: path: VintagestoryApi/Util/JsonUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanConvert path: Util/JsonUtil.cs startLine: 151 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Util/JsonUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReadJson path: Util/JsonUtil.cs startLine: 156 @@ -164,8 +164,8 @@ items: source: remote: path: VintagestoryApi/Util/JsonUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WriteJson path: Util/JsonUtil.cs startLine: 165 diff --git a/api/Vintagestory.API.Common.AsyncParseResults.yml b/api/Vintagestory.API.Common.AsyncParseResults.yml index f189c818..61cb4dbf 100644 --- a/api/Vintagestory.API.Common.AsyncParseResults.yml +++ b/api/Vintagestory.API.Common.AsyncParseResults.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AsyncParseResults path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 202 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Status path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 204 @@ -79,8 +79,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Data path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 205 diff --git a/api/Vintagestory.API.Common.AttachmentPoint.yml b/api/Vintagestory.API.Common.AttachmentPoint.yml index 8d03c2d8..32d9e0d1 100644 --- a/api/Vintagestory.API.Common.AttachmentPoint.yml +++ b/api/Vintagestory.API.Common.AttachmentPoint.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/AttachmentPoint.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AttachmentPoint path: Common/Model/Shape/AttachmentPoint.cs startLine: 5 @@ -60,8 +60,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/AttachmentPoint.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParentElement path: Common/Model/Shape/AttachmentPoint.cs startLine: 10 @@ -89,8 +89,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/AttachmentPoint.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Common/Model/Shape/AttachmentPoint.cs startLine: 15 @@ -118,8 +118,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/AttachmentPoint.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PosX path: Common/Model/Shape/AttachmentPoint.cs startLine: 20 @@ -147,8 +147,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/AttachmentPoint.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PosY path: Common/Model/Shape/AttachmentPoint.cs startLine: 25 @@ -176,8 +176,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/AttachmentPoint.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PosZ path: Common/Model/Shape/AttachmentPoint.cs startLine: 30 @@ -205,8 +205,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/AttachmentPoint.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotationX path: Common/Model/Shape/AttachmentPoint.cs startLine: 35 @@ -234,8 +234,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/AttachmentPoint.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotationY path: Common/Model/Shape/AttachmentPoint.cs startLine: 40 @@ -263,8 +263,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/AttachmentPoint.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotationZ path: Common/Model/Shape/AttachmentPoint.cs startLine: 45 diff --git a/api/Vintagestory.API.Common.AttachmentPointAndPose.yml b/api/Vintagestory.API.Common.AttachmentPointAndPose.yml index 8f7d7f64..966c47a5 100644 --- a/api/Vintagestory.API.Common.AttachmentPointAndPose.yml +++ b/api/Vintagestory.API.Common.AttachmentPointAndPose.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/IAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AttachmentPointAndPose path: Common/Model/Animation/IAnimator.cs startLine: 8 @@ -54,8 +54,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/IAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AnimModelMatrix path: Common/Model/Animation/IAnimator.cs startLine: 13 @@ -83,8 +83,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/IAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CachedPose path: Common/Model/Animation/IAnimator.cs startLine: 18 @@ -112,8 +112,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/IAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AttachPoint path: Common/Model/Animation/IAnimator.cs startLine: 23 @@ -141,8 +141,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/IAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Model/Animation/IAnimator.cs startLine: 25 diff --git a/api/Vintagestory.API.Common.BakedBitmap.yml b/api/Vintagestory.API.Common.BakedBitmap.yml index d4e14217..59da667c 100644 --- a/api/Vintagestory.API.Common.BakedBitmap.yml +++ b/api/Vintagestory.API.Common.BakedBitmap.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BakedBitmap path: Common/Texture/BitmapRef.cs startLine: 18 @@ -60,8 +60,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TexturePixels path: Common/Texture/BitmapRef.cs startLine: 20 @@ -87,8 +87,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Width path: Common/Texture/BitmapRef.cs startLine: 21 @@ -114,8 +114,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Height path: Common/Texture/BitmapRef.cs startLine: 22 @@ -141,8 +141,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pixels path: Common/Texture/BitmapRef.cs startLine: 24 @@ -173,8 +173,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetPixel path: Common/Texture/BitmapRef.cs startLine: 30 @@ -212,8 +212,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetPixelArgb path: Common/Texture/BitmapRef.cs startLine: 34 @@ -248,8 +248,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetPixelRel path: Common/Texture/BitmapRef.cs startLine: 39 @@ -287,8 +287,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetPixelsTransformed path: Common/Texture/BitmapRef.cs startLine: 44 diff --git a/api/Vintagestory.API.Common.BakingProperties.yml b/api/Vintagestory.API.Common.BakingProperties.yml index a706f0fd..833bf8f5 100644 --- a/api/Vintagestory.API.Common.BakingProperties.yml +++ b/api/Vintagestory.API.Common.BakingProperties.yml @@ -24,8 +24,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CombustibleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BakingProperties path: Common/Collectible/CombustibleProperties.cs startLine: 110 @@ -59,8 +59,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CombustibleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Temp path: Common/Collectible/CombustibleProperties.cs startLine: 112 @@ -86,8 +86,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CombustibleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LevelFrom path: Common/Collectible/CombustibleProperties.cs startLine: 113 @@ -113,8 +113,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CombustibleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LevelTo path: Common/Collectible/CombustibleProperties.cs startLine: 114 @@ -140,8 +140,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CombustibleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartScaleY path: Common/Collectible/CombustibleProperties.cs startLine: 115 @@ -167,8 +167,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CombustibleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EndScaleY path: Common/Collectible/CombustibleProperties.cs startLine: 116 @@ -194,8 +194,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CombustibleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ResultCode path: Common/Collectible/CombustibleProperties.cs startLine: 117 @@ -221,8 +221,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CombustibleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InitialCode path: Common/Collectible/CombustibleProperties.cs startLine: 118 @@ -248,8 +248,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CombustibleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LargeItem path: Common/Collectible/CombustibleProperties.cs startLine: 119 @@ -275,8 +275,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CombustibleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReadFrom path: Common/Collectible/CombustibleProperties.cs startLine: 121 diff --git a/api/Vintagestory.API.Common.BitmapExternal.yml b/api/Vintagestory.API.Common.BitmapExternal.yml index 6121fa0a..48b7ff57 100644 --- a/api/Vintagestory.API.Common.BitmapExternal.yml +++ b/api/Vintagestory.API.Common.BitmapExternal.yml @@ -32,8 +32,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapExternal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BitmapExternal path: Common/Texture/BitmapExternal.cs startLine: 18 @@ -71,8 +71,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapExternal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: bmp path: Common/Texture/BitmapExternal.cs startLine: 20 @@ -98,8 +98,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapExternal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Height path: Common/Texture/BitmapExternal.cs startLine: 22 @@ -129,8 +129,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapExternal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Width path: Common/Texture/BitmapExternal.cs startLine: 24 @@ -160,8 +160,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapExternal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pixels path: Common/Texture/BitmapExternal.cs startLine: 26 @@ -191,8 +191,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapExternal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PixelsPtrAndLock path: Common/Texture/BitmapExternal.cs startLine: 28 @@ -220,8 +220,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapExternal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Texture/BitmapExternal.cs startLine: 30 @@ -249,8 +249,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapExternal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Texture/BitmapExternal.cs startLine: 34 @@ -283,8 +283,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapExternal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Texture/BitmapExternal.cs startLine: 39 @@ -319,8 +319,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapExternal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Texture/BitmapExternal.cs startLine: 69 @@ -351,8 +351,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapExternal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Texture/BitmapExternal.cs startLine: 89 @@ -383,8 +383,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapExternal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Texture/BitmapExternal.cs startLine: 111 @@ -424,8 +424,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapExternal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Common/Texture/BitmapExternal.cs startLine: 129 @@ -453,8 +453,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapExternal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Save path: Common/Texture/BitmapExternal.cs startLine: 134 @@ -487,8 +487,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapExternal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetPixel path: Common/Texture/BitmapExternal.cs startLine: 145 @@ -529,8 +529,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapExternal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetPixelRel path: Common/Texture/BitmapExternal.cs startLine: 156 @@ -571,8 +571,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapExternal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MulAlpha path: Common/Texture/BitmapExternal.cs startLine: 161 @@ -605,8 +605,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapExternal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetPixelsTransformed path: Common/Texture/BitmapExternal.cs startLine: 178 diff --git a/api/Vintagestory.API.Common.BitmapRef.yml b/api/Vintagestory.API.Common.BitmapRef.yml index 8e4bc040..5999d927 100644 --- a/api/Vintagestory.API.Common.BitmapRef.yml +++ b/api/Vintagestory.API.Common.BitmapRef.yml @@ -24,8 +24,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BitmapRef path: Common/Texture/BitmapRef.cs startLine: 105 @@ -64,8 +64,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Width path: Common/Texture/BitmapRef.cs startLine: 107 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Height path: Common/Texture/BitmapRef.cs startLine: 108 @@ -128,8 +128,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pixels path: Common/Texture/BitmapRef.cs startLine: 109 @@ -160,8 +160,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Common/Texture/BitmapRef.cs startLine: 111 @@ -190,8 +190,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetPixel path: Common/Texture/BitmapRef.cs startLine: 112 @@ -229,8 +229,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetPixelRel path: Common/Texture/BitmapRef.cs startLine: 113 @@ -268,8 +268,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetPixelsTransformed path: Common/Texture/BitmapRef.cs startLine: 115 @@ -307,8 +307,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Save path: Common/Texture/BitmapRef.cs startLine: 116 @@ -339,8 +339,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MulAlpha path: Common/Texture/BitmapRef.cs startLine: 118 diff --git a/api/Vintagestory.API.Common.Block.yml b/api/Vintagestory.API.Common.Block.yml index 990867fd..b2e8d5d0 100644 --- a/api/Vintagestory.API.Common.Block.yml +++ b/api/Vintagestory.API.Common.Block.yml @@ -199,8 +199,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Block path: Common/Collectible/Block/Block.cs startLine: 26 @@ -402,8 +402,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Id path: Common/Collectible/Block/Block.cs startLine: 31 @@ -434,8 +434,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ItemClass path: Common/Collectible/Block/Block.cs startLine: 36 @@ -466,8 +466,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ForFluidsLayer path: Common/Collectible/Block/Block.cs startLine: 41 @@ -497,8 +497,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemapToLiquidsLayer path: Common/Collectible/Block/Block.cs startLine: 46 @@ -528,8 +528,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DefaultCollisionBox path: Common/Collectible/Block/Block.cs startLine: 51 @@ -557,8 +557,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockId path: Common/Collectible/Block/Block.cs startLine: 56 @@ -586,8 +586,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawType path: Common/Collectible/Block/Block.cs startLine: 61 @@ -615,8 +615,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderPass path: Common/Collectible/Block/Block.cs startLine: 66 @@ -644,8 +644,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Ambientocclusion path: Common/Collectible/Block/Block.cs startLine: 71 @@ -673,8 +673,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WalkSpeedMultiplier path: Common/Collectible/Block/Block.cs startLine: 76 @@ -702,8 +702,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DragMultiplier path: Common/Collectible/Block/Block.cs startLine: 81 @@ -731,8 +731,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PartialSelection path: Common/Collectible/Block/Block.cs startLine: 86 @@ -760,8 +760,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sounds path: Common/Collectible/Block/Block.cs startLine: 91 @@ -789,8 +789,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VertexFlags path: Common/Collectible/Block/Block.cs startLine: 96 @@ -818,8 +818,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Frostable path: Common/Collectible/Block/Block.cs startLine: 101 @@ -847,8 +847,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LightAbsorption path: Common/Collectible/Block/Block.cs startLine: 106 @@ -876,8 +876,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlacedPriorityInteract path: Common/Collectible/Block/Block.cs startLine: 111 @@ -905,8 +905,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LightTraversable path: Common/Collectible/Block/Block.cs startLine: 119 @@ -939,8 +939,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Replaceable path: Common/Collectible/Block/Block.cs startLine: 132 @@ -985,8 +985,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Fertility path: Common/Collectible/Block/Block.cs startLine: 138 @@ -1014,8 +1014,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RequiredMiningTier path: Common/Collectible/Block/Block.cs startLine: 143 @@ -1043,8 +1043,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Resistance path: Common/Collectible/Block/Block.cs startLine: 148 @@ -1072,8 +1072,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockMaterial path: Common/Collectible/Block/Block.cs startLine: 153 @@ -1101,8 +1101,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RandomizeAxes path: Common/Collectible/Block/Block.cs startLine: 158 @@ -1130,8 +1130,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RandomDrawOffset path: Common/Collectible/Block/Block.cs startLine: 163 @@ -1159,8 +1159,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RandomizeRotations path: Common/Collectible/Block/Block.cs startLine: 165 @@ -1186,8 +1186,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RandomSizeAdjust path: Common/Collectible/Block/Block.cs startLine: 167 @@ -1213,8 +1213,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: alternatingVOffset path: Common/Collectible/Block/Block.cs startLine: 172 @@ -1242,8 +1242,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: alternatingVOffsetFaces path: Common/Collectible/Block/Block.cs startLine: 176 @@ -1271,8 +1271,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShapeInventory path: Common/Collectible/Block/Block.cs startLine: 181 @@ -1300,8 +1300,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Shape path: Common/Collectible/Block/Block.cs startLine: 186 @@ -1329,8 +1329,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Lod0Shape path: Common/Collectible/Block/Block.cs startLine: 188 @@ -1356,8 +1356,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Lod2Shape path: Common/Collectible/Block/Block.cs startLine: 189 @@ -1383,8 +1383,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Lod0Mesh path: Common/Collectible/Block/Block.cs startLine: 190 @@ -1410,8 +1410,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Lod2Mesh path: Common/Collectible/Block/Block.cs startLine: 191 @@ -1437,8 +1437,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DoNotRenderAtLod2 path: Common/Collectible/Block/Block.cs startLine: 192 @@ -1464,8 +1464,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Textures path: Common/Collectible/Block/Block.cs startLine: 198 @@ -1496,8 +1496,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FastTextureVariants path: Common/Collectible/Block/Block.cs startLine: 204 @@ -1528,8 +1528,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TexturesInventory path: Common/Collectible/Block/Block.cs startLine: 210 @@ -1560,8 +1560,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FirstTextureInventory path: Common/Collectible/Block/Block.cs startLine: 215 @@ -1591,8 +1591,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SideOpaque path: Common/Collectible/Block/Block.cs startLine: 220 @@ -1620,8 +1620,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SideSolid path: Common/Collectible/Block/Block.cs startLine: 225 @@ -1649,8 +1649,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SideAo path: Common/Collectible/Block/Block.cs startLine: 230 @@ -1678,8 +1678,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EmitSideAo path: Common/Collectible/Block/Block.cs startLine: 235 @@ -1707,8 +1707,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AllowSpawnCreatureGroups path: Common/Collectible/Block/Block.cs startLine: 240 @@ -1736,8 +1736,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AllCreaturesAllowed path: Common/Collectible/Block/Block.cs startLine: 241 @@ -1763,8 +1763,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FaceCullMode path: Common/Collectible/Block/Block.cs startLine: 246 @@ -1792,8 +1792,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClimateColorMap path: Common/Collectible/Block/Block.cs startLine: 251 @@ -1821,8 +1821,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClimateColorMapResolved path: Common/Collectible/Block/Block.cs startLine: 252 @@ -1848,8 +1848,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SeasonColorMap path: Common/Collectible/Block/Block.cs startLine: 257 @@ -1877,8 +1877,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SeasonColorMapResolved path: Common/Collectible/Block/Block.cs startLine: 258 @@ -1904,8 +1904,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShapeUsesColormap path: Common/Collectible/Block/Block.cs startLine: 263 @@ -1933,8 +1933,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadColorMapAnyway path: Common/Collectible/Block/Block.cs startLine: 264 @@ -1960,8 +1960,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExtraColorBits path: Common/Collectible/Block/Block.cs startLine: 268 @@ -1989,8 +1989,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CollisionBoxes path: Common/Collectible/Block/Block.cs startLine: 273 @@ -2018,8 +2018,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SelectionBoxes path: Common/Collectible/Block/Block.cs startLine: 278 @@ -2047,8 +2047,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParticleCollisionBoxes path: Common/Collectible/Block/Block.cs startLine: 283 @@ -2076,8 +2076,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Climbable path: Common/Collectible/Block/Block.cs startLine: 288 @@ -2105,8 +2105,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RainPermeable path: Common/Collectible/Block/Block.cs startLine: 293 @@ -2134,8 +2134,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LiquidLevel path: Common/Collectible/Block/Block.cs startLine: 298 @@ -2163,8 +2163,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LiquidCode path: Common/Collectible/Block/Block.cs startLine: 304 @@ -2193,8 +2193,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HasAlternates path: Common/Collectible/Block/Block.cs startLine: 309 @@ -2222,8 +2222,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HasTiles path: Common/Collectible/Block/Block.cs startLine: 310 @@ -2249,8 +2249,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockBehaviors path: Common/Collectible/Block/Block.cs startLine: 315 @@ -2278,8 +2278,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockEntityBehaviors path: Common/Collectible/Block/Block.cs startLine: 320 @@ -2307,8 +2307,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drops path: Common/Collectible/Block/Block.cs startLine: 325 @@ -2336,8 +2336,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SplitDropStacks path: Common/Collectible/Block/Block.cs startLine: 330 @@ -2365,8 +2365,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CropProps path: Common/Collectible/Block/Block.cs startLine: 335 @@ -2394,8 +2394,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityClass path: Common/Collectible/Block/Block.cs startLine: 340 @@ -2423,8 +2423,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CustomBlockLayerHandler path: Common/Collectible/Block/Block.cs startLine: 342 @@ -2450,8 +2450,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PushVector path: Common/Collectible/Block/Block.cs startLine: 347 @@ -2481,8 +2481,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TraversalCost path: Common/Collectible/Block/Block.cs startLine: 349 @@ -2508,8 +2508,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanStep path: Common/Collectible/Block/Block.cs startLine: 350 @@ -2535,8 +2535,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AllowStepWhenStuck path: Common/Collectible/Block/Block.cs startLine: 351 @@ -2562,8 +2562,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: decorBehaviorFlags path: Common/Collectible/Block/Block.cs startLine: 357 @@ -2591,8 +2591,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DecorThickness path: Common/Collectible/Block/Block.cs startLine: 361 @@ -2620,8 +2620,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InteractionHelpYOffset path: Common/Collectible/Block/Block.cs startLine: 363 @@ -2647,8 +2647,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TextureSubIdForBlockColor path: Common/Collectible/Block/Block.cs startLine: 365 @@ -2674,8 +2674,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClimateColorMapForMap path: Common/Collectible/Block/Block.cs startLine: 367 @@ -2703,8 +2703,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SeasonColorMapForMap path: Common/Collectible/Block/Block.cs startLine: 368 @@ -2732,8 +2732,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Collectible/Block/Block.cs startLine: 374 @@ -2763,8 +2763,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnLoaded path: Common/Collectible/Block/Block.cs startLine: 387 @@ -2796,8 +2796,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadTextureSubIdForBlockColor path: Common/Collectible/Block/Block.cs startLine: 414 @@ -2822,8 +2822,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: notSnowCovered path: Common/Collectible/Block/Block.cs startLine: 444 @@ -2849,8 +2849,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: snowCovered1 path: Common/Collectible/Block/Block.cs startLine: 445 @@ -2876,8 +2876,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: snowCovered2 path: Common/Collectible/Block/Block.cs startLine: 446 @@ -2903,8 +2903,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: snowCovered3 path: Common/Collectible/Block/Block.cs startLine: 447 @@ -2930,8 +2930,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: snowLevel path: Common/Collectible/Block/Block.cs startLine: 448 @@ -2957,8 +2957,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AllSidesOpaque path: Common/Collectible/Block/Block.cs startLine: 454 @@ -2988,8 +2988,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DisplacesLiquids path: Common/Collectible/Block/Block.cs startLine: 478 @@ -3026,8 +3026,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SideIsSolid path: Common/Collectible/Block/Block.cs startLine: 487 @@ -3067,8 +3067,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SideIsSolid path: Common/Collectible/Block/Block.cs startLine: 495 @@ -3107,8 +3107,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldMergeFace path: Common/Collectible/Block/Block.cs startLine: 507 @@ -3151,8 +3151,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetParticleBreakBox path: Common/Collectible/Block/Block.cs startLine: 520 @@ -3192,8 +3192,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSelectionBoxes path: Common/Collectible/Block/Block.cs startLine: 541 @@ -3230,8 +3230,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCollisionBoxes path: Common/Collectible/Block/Block.cs startLine: 565 @@ -3268,8 +3268,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetParticleCollisionBoxes path: Common/Collectible/Block/Block.cs startLine: 576 @@ -3306,8 +3306,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlockMaterial path: Common/Collectible/Block/Block.cs startLine: 589 @@ -3350,8 +3350,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetResistance path: Common/Collectible/Block/Block.cs startLine: 600 @@ -3388,8 +3388,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSounds path: Common/Collectible/Block/Block.cs startLine: 612 @@ -3429,8 +3429,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAttributes path: Common/Collectible/Block/Block.cs startLine: 634 @@ -3467,8 +3467,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DoEmitSideAo path: Common/Collectible/Block/Block.cs startLine: 639 @@ -3500,8 +3500,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DoEmitSideAoByFlag path: Common/Collectible/Block/Block.cs startLine: 644 @@ -3538,8 +3538,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetLightAbsorption path: Common/Collectible/Block/Block.cs startLine: 649 @@ -3571,8 +3571,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetLightAbsorption path: Common/Collectible/Block/Block.cs startLine: 654 @@ -3604,8 +3604,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetLiquidCode path: Common/Collectible/Block/Block.cs startLine: 666 @@ -3642,8 +3642,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDecal path: Common/Collectible/Block/Block.cs startLine: 680 @@ -3689,8 +3689,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanAttachBlockAt path: Common/Collectible/Block/Block.cs startLine: 696 @@ -3736,8 +3736,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanCreatureSpawnOn path: Common/Collectible/Block/Block.cs startLine: 728 @@ -3780,8 +3780,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryPlaceBlockForWorldGen path: Common/Collectible/Block/Block.cs startLine: 772 @@ -3824,8 +3824,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryPlaceBlock path: Common/Collectible/Block/Block.cs startLine: 805 @@ -3874,8 +3874,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanPlaceBlock path: Common/Collectible/Block/Block.cs startLine: 844 @@ -3920,8 +3920,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DoPlaceBlock path: Common/Collectible/Block/Block.cs startLine: 899 @@ -3963,8 +3963,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBeingLookedAt path: Common/Collectible/Block/Block.cs startLine: 932 @@ -4004,8 +4004,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnGettingBroken path: Common/Collectible/Block/Block.cs startLine: 951 @@ -4057,8 +4057,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RandomSoundPitch path: Common/Collectible/Block/Block.cs startLine: 998 @@ -4088,8 +4088,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBlockBroken path: Common/Collectible/Block/Block.cs startLine: 1012 @@ -4132,8 +4132,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SpawnBlockBrokenParticles path: Common/Collectible/Block/Block.cs startLine: 1066 @@ -4161,8 +4161,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBrokenAsDecor path: Common/Collectible/Block/Block.cs startLine: 1087 @@ -4194,8 +4194,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnCreatedByCrafting path: Common/Collectible/Block/Block.cs startLine: 1114 @@ -4236,8 +4236,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDropsForHandbook path: Common/Collectible/Block/Block.cs startLine: 1137 @@ -4274,8 +4274,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHandbookDropsFromBreakDrops path: Common/Collectible/Block/Block.cs startLine: 1148 @@ -4312,8 +4312,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDrops path: Common/Collectible/Block/Block.cs startLine: 1170 @@ -4359,8 +4359,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnPickBlock path: Common/Collectible/Block/Block.cs startLine: 1230 @@ -4397,8 +4397,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBlockRemoved path: Common/Collectible/Block/Block.cs startLine: 1261 @@ -4435,8 +4435,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBlockPlaced path: Common/Collectible/Block/Block.cs startLine: 1289 @@ -4476,8 +4476,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnNeighbourBlockChange path: Common/Collectible/Block/Block.cs startLine: 1318 @@ -4514,8 +4514,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBlockInteractStart path: Common/Collectible/Block/Block.cs startLine: 1345 @@ -4555,8 +4555,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Activate path: Common/Collectible/Block/Block.cs startLine: 1381 @@ -4596,8 +4596,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBlockInteractStep path: Common/Collectible/Block/Block.cs startLine: 1404 @@ -4643,8 +4643,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBlockInteractStop path: Common/Collectible/Block/Block.cs startLine: 1434 @@ -4687,8 +4687,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBlockInteractCancel path: Common/Collectible/Block/Block.cs startLine: 1462 @@ -4736,8 +4736,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnEntityInside path: Common/Collectible/Block/Block.cs startLine: 1491 @@ -4774,8 +4774,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnEntityCollide path: Common/Collectible/Block/Block.cs startLine: 1507 @@ -4824,8 +4824,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnFallOnto path: Common/Collectible/Block/Block.cs startLine: 1540 @@ -4868,8 +4868,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldReceiveClientParticleTicks path: Common/Collectible/Block/Block.cs startLine: 1556 @@ -4920,8 +4920,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldPlayAmbientSound path: Common/Collectible/Block/Block.cs startLine: 1594 @@ -4958,8 +4958,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnAsyncClientParticleTick path: Common/Collectible/Block/Block.cs startLine: 1607 @@ -5002,8 +5002,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldReceiveServerGameTicks path: Common/Collectible/Block/Block.cs startLine: 1641 @@ -5058,8 +5058,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnServerGameTick path: Common/Collectible/Block/Block.cs startLine: 1663 @@ -5099,8 +5099,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnDecalTesselation path: Common/Collectible/Block/Block.cs startLine: 1682 @@ -5132,8 +5132,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: waveFlagMinY path: Common/Collectible/Block/Block.cs startLine: 1701 @@ -5159,8 +5159,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnJsonTesselation path: Common/Collectible/Block/Block.cs startLine: 1711 @@ -5206,8 +5206,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnInstancedTesselation path: Common/Collectible/Block/Block.cs startLine: 1730 @@ -5248,8 +5248,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DetermineTopMiddlePos path: Common/Collectible/Block/Block.cs startLine: 1740 @@ -5276,8 +5276,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsReplacableBy path: Common/Collectible/Block/Block.cs startLine: 1780 @@ -5311,8 +5311,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SuggestedHVOrientation path: Common/Collectible/Block/Block.cs startLine: 1809 @@ -5349,8 +5349,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PerformSnowLevelUpdate path: Common/Collectible/Block/Block.cs startLine: 1840 @@ -5393,8 +5393,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSnowCoveredVariant path: Common/Collectible/Block/Block.cs startLine: 1854 @@ -5434,8 +5434,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSnowLevel path: Common/Collectible/Block/Block.cs startLine: 1879 @@ -5465,8 +5465,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHeatRetention path: Common/Collectible/Block/Block.cs startLine: 1890 @@ -5515,8 +5515,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRetention path: Common/Collectible/Block/Block.cs startLine: 1904 @@ -5556,8 +5556,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsClimbable path: Common/Collectible/Block/Block.cs startLine: 1939 @@ -5587,8 +5587,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRotatedBlockCode path: Common/Collectible/Block/Block.cs startLine: 1950 @@ -5625,8 +5625,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetVerticallyFlippedBlockCode path: Common/Collectible/Block/Block.cs startLine: 1978 @@ -5656,8 +5656,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHorizontallyFlippedBlockCode path: Common/Collectible/Block/Block.cs startLine: 2008 @@ -5691,8 +5691,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBehavior path: Common/Collectible/Block/Block.cs startLine: 2039 @@ -5732,8 +5732,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetPlacedBlockInteractionHelp path: Common/Collectible/Block/Block.cs startLine: 2073 @@ -5773,8 +5773,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetPlacedBlockName path: Common/Collectible/Block/Block.cs startLine: 2131 @@ -5811,8 +5811,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetPlacedBlockInfo path: Common/Collectible/Block/Block.cs startLine: 2148 @@ -5849,8 +5849,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHeldItemInfo path: Common/Collectible/Block/Block.cs startLine: 2227 @@ -5894,8 +5894,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddExtraHeldItemInfoPostMaterial path: Common/Collectible/Block/Block.cs startLine: 2261 @@ -5932,8 +5932,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DoParticalSelection path: Common/Collectible/Block/Block.cs startLine: 2271 @@ -5970,8 +5970,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSelectionColor path: Common/Collectible/Block/Block.cs startLine: 2282 @@ -6008,8 +6008,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnCollectTextures path: Common/Collectible/Block/Block.cs startLine: 2293 @@ -6043,8 +6043,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlastResistance path: Common/Collectible/Block/Block.cs startLine: 2317 @@ -6087,8 +6087,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExplosionDropChance path: Common/Collectible/Block/Block.cs startLine: 2329 @@ -6128,8 +6128,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBlockExploded path: Common/Collectible/Block/Block.cs startLine: 2340 @@ -6169,8 +6169,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRandomColor path: Common/Collectible/Block/Block.cs startLine: 2396 @@ -6216,8 +6216,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRandomColor path: Common/Collectible/Block/Block.cs startLine: 2422 @@ -6255,8 +6255,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetColor path: Common/Collectible/Block/Block.cs startLine: 2435 @@ -6292,8 +6292,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetColorWithoutTint path: Common/Collectible/Block/Block.cs startLine: 2453 @@ -6330,8 +6330,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AllowSnowCoverage path: Common/Collectible/Block/Block.cs startLine: 2462 @@ -6363,8 +6363,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlockEntity path: Common/Collectible/Block/Block.cs startLine: 2473 @@ -6404,8 +6404,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlockEntity path: Common/Collectible/Block/Block.cs startLine: 2484 @@ -6445,8 +6445,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBEBehavior path: Common/Collectible/Block/Block.cs startLine: 2495 @@ -6486,8 +6486,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetInterface path: Common/Collectible/Block/Block.cs startLine: 2511 @@ -6539,8 +6539,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Collectible/Block/Block.cs startLine: 2533 @@ -6570,8 +6570,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HasBlockBehavior path: Common/Collectible/Block/Block.cs startLine: 2625 @@ -6611,8 +6611,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HasBehavior path: Common/Collectible/Block/Block.cs startLine: 2636 @@ -6653,8 +6653,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HasBehavior path: Common/Collectible/Block/Block.cs startLine: 2642 @@ -6695,8 +6695,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HasBehavior path: Common/Collectible/Block/Block.cs startLine: 2647 @@ -6737,8 +6737,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetLiquidBarrierHeightOnSide path: Common/Collectible/Block/Block.cs startLine: 2684 @@ -6772,8 +6772,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Common/Collectible/Block/Block.cs startLine: 2721 diff --git a/api/Vintagestory.API.Common.BlockBehavior.yml b/api/Vintagestory.API.Common.BlockBehavior.yml index 86d8c1cb..8a71165c 100644 --- a/api/Vintagestory.API.Common.BlockBehavior.yml +++ b/api/Vintagestory.API.Common.BlockBehavior.yml @@ -50,8 +50,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockBehavior path: Common/Collectible/Block/BlockBehavior.cs startLine: 12 @@ -118,8 +118,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: block path: Common/Collectible/Block/BlockBehavior.cs startLine: 17 @@ -147,8 +147,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Collectible/Block/BlockBehavior.cs startLine: 20 @@ -179,8 +179,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBlockBroken path: Common/Collectible/Block/BlockBehavior.cs startLine: 33 @@ -223,8 +223,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnPickBlock path: Common/Collectible/Block/BlockBehavior.cs startLine: 45 @@ -267,8 +267,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDrops path: Common/Collectible/Block/BlockBehavior.cs startLine: 61 @@ -317,8 +317,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnNeighbourBlockChange path: Common/Collectible/Block/BlockBehavior.cs startLine: 75 @@ -361,8 +361,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanAttachBlockAt path: Common/Collectible/Block/BlockBehavior.cs startLine: 90 @@ -414,8 +414,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanCreatureSpawnOn path: Common/Collectible/Block/BlockBehavior.cs startLine: 107 @@ -464,8 +464,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRotatedBlockCode path: Common/Collectible/Block/BlockBehavior.cs startLine: 121 @@ -505,8 +505,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetVerticallyFlippedBlockCode path: Common/Collectible/Block/BlockBehavior.cs startLine: 133 @@ -543,8 +543,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHorizontallyFlippedBlockCode path: Common/Collectible/Block/BlockBehavior.cs startLine: 145 @@ -584,8 +584,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsReplacableBy path: Common/Collectible/Block/BlockBehavior.cs startLine: 157 @@ -625,8 +625,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldReceiveClientParticleTicks path: Common/Collectible/Block/BlockBehavior.cs startLine: 176 @@ -680,8 +680,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnAsyncClientParticleTick path: Common/Collectible/Block/BlockBehavior.cs startLine: 184 @@ -718,8 +718,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBlockRemoved path: Common/Collectible/Block/BlockBehavior.cs startLine: 198 @@ -765,8 +765,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Activate path: Common/Collectible/Block/BlockBehavior.cs startLine: 204 @@ -805,8 +805,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBlockInteractStart path: Common/Collectible/Block/BlockBehavior.cs startLine: 217 @@ -852,8 +852,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetPlacedBlockInfo path: Common/Collectible/Block/BlockBehavior.cs startLine: 230 @@ -893,8 +893,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBlockExploded path: Common/Collectible/Block/BlockBehavior.cs startLine: 237 @@ -933,8 +933,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetPlacedBlockInteractionHelp path: Common/Collectible/Block/BlockBehavior.cs startLine: 242 @@ -973,8 +973,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBlockInteractStop path: Common/Collectible/Block/BlockBehavior.cs startLine: 249 @@ -1013,8 +1013,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBlockInteractStep path: Common/Collectible/Block/BlockBehavior.cs startLine: 254 @@ -1055,8 +1055,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBlockInteractCancel path: Common/Collectible/Block/BlockBehavior.cs startLine: 260 @@ -1097,8 +1097,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryPlaceBlock path: Common/Collectible/Block/BlockBehavior.cs startLine: 278 @@ -1153,8 +1153,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanPlaceBlock path: Common/Collectible/Block/BlockBehavior.cs startLine: 293 @@ -1203,8 +1203,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DoPlaceBlock path: Common/Collectible/Block/BlockBehavior.cs startLine: 308 @@ -1253,8 +1253,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBlockPlaced path: Common/Collectible/Block/BlockBehavior.cs startLine: 321 @@ -1297,8 +1297,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnCreatedByCrafting path: Common/Collectible/Block/BlockBehavior.cs startLine: 326 @@ -1335,8 +1335,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHeldBlockInfo path: Common/Collectible/Block/BlockBehavior.cs startLine: 331 @@ -1368,8 +1368,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSnowCoveredBlockCode path: Common/Collectible/Block/BlockBehavior.cs startLine: 336 @@ -1402,8 +1402,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMiningSpeedModifier path: Common/Collectible/Block/BlockBehavior.cs startLine: 344 @@ -1439,8 +1439,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetPlacedBlockName path: Common/Collectible/Block/BlockBehavior.cs startLine: 349 @@ -1472,8 +1472,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHeatRetention path: Common/Collectible/Block/BlockBehavior.cs startLine: 354 @@ -1522,8 +1522,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRetention path: Common/Collectible/Block/BlockBehavior.cs startLine: 360 @@ -1562,8 +1562,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetLiquidBarrierHeightOnSide path: Common/Collectible/Block/BlockBehavior.cs startLine: 365 diff --git a/api/Vintagestory.API.Common.BlockBehaviorDelegate.yml b/api/Vintagestory.API.Common.BlockBehaviorDelegate.yml index f5be96df..f1b8ce3d 100644 --- a/api/Vintagestory.API.Common.BlockBehaviorDelegate.yml +++ b/api/Vintagestory.API.Common.BlockBehaviorDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockBehaviorDelegate path: Common/Collectible/Block/Block.cs startLine: 14 diff --git a/api/Vintagestory.API.Common.BlockBreakDelegate.yml b/api/Vintagestory.API.Common.BlockBreakDelegate.yml index 300d6b54..8b8b945d 100644 --- a/api/Vintagestory.API.Common.BlockBreakDelegate.yml +++ b/api/Vintagestory.API.Common.BlockBreakDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockBreakDelegate path: Common/API/Delegates.cs startLine: 141 diff --git a/api/Vintagestory.API.Common.BlockBreakingParticleProps.yml b/api/Vintagestory.API.Common.BlockBreakingParticleProps.yml index 76a8516e..43fbf390 100644 --- a/api/Vintagestory.API.Common.BlockBreakingParticleProps.yml +++ b/api/Vintagestory.API.Common.BlockBreakingParticleProps.yml @@ -28,8 +28,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockBreakingParticleProps path: Common/Particle/CollectibleParticleProperties.cs startLine: 29 @@ -95,8 +95,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: boyant path: Common/Particle/CollectibleParticleProperties.cs startLine: 32 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRgbaColor path: Common/Particle/CollectibleParticleProperties.cs startLine: 36 @@ -157,8 +157,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pos path: Common/Particle/CollectibleParticleProperties.cs startLine: 41 @@ -190,8 +190,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Size path: Common/Particle/CollectibleParticleProperties.cs startLine: 43 @@ -223,8 +223,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SizeEvolve path: Common/Particle/CollectibleParticleProperties.cs startLine: 45 @@ -256,8 +256,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SwimOnLiquid path: Common/Particle/CollectibleParticleProperties.cs startLine: 47 @@ -287,8 +287,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetVelocity path: Common/Particle/CollectibleParticleProperties.cs startLine: 49 @@ -323,8 +323,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParticleModel path: Common/Particle/CollectibleParticleProperties.cs startLine: 60 @@ -356,8 +356,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Quantity path: Common/Particle/CollectibleParticleProperties.cs startLine: 62 @@ -389,8 +389,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VertexFlags path: Common/Particle/CollectibleParticleProperties.cs startLine: 64 @@ -422,8 +422,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LifeLength path: Common/Particle/CollectibleParticleProperties.cs startLine: 66 @@ -455,8 +455,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Common/Particle/CollectibleParticleProperties.cs startLine: 68 @@ -488,8 +488,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Particle/CollectibleParticleProperties.cs startLine: 79 diff --git a/api/Vintagestory.API.Common.BlockBrokenDelegate.yml b/api/Vintagestory.API.Common.BlockBrokenDelegate.yml index a16564a3..db2eafa2 100644 --- a/api/Vintagestory.API.Common.BlockBrokenDelegate.yml +++ b/api/Vintagestory.API.Common.BlockBrokenDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockBrokenDelegate path: Common/API/Delegates.cs startLine: 138 diff --git a/api/Vintagestory.API.Common.BlockBrokenParticleProps.yml b/api/Vintagestory.API.Common.BlockBrokenParticleProps.yml index c205cec3..fcc545cd 100644 --- a/api/Vintagestory.API.Common.BlockBrokenParticleProps.yml +++ b/api/Vintagestory.API.Common.BlockBrokenParticleProps.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockBrokenParticleProps path: Common/Particle/CollectibleParticleProperties.cs startLine: 90 @@ -94,8 +94,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pos path: Common/Particle/CollectibleParticleProperties.cs startLine: 94 @@ -127,8 +127,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Size path: Common/Particle/CollectibleParticleProperties.cs startLine: 96 @@ -160,8 +160,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SwimOnLiquid path: Common/Particle/CollectibleParticleProperties.cs startLine: 98 @@ -191,8 +191,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SizeEvolve path: Common/Particle/CollectibleParticleProperties.cs startLine: 100 @@ -224,8 +224,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetVelocity path: Common/Particle/CollectibleParticleProperties.cs startLine: 102 @@ -260,8 +260,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Quantity path: Common/Particle/CollectibleParticleProperties.cs startLine: 109 @@ -293,8 +293,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VertexFlags path: Common/Particle/CollectibleParticleProperties.cs startLine: 111 @@ -326,8 +326,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LifeLength path: Common/Particle/CollectibleParticleProperties.cs startLine: 113 diff --git a/api/Vintagestory.API.Common.BlockCropProperties.yml b/api/Vintagestory.API.Common.BlockCropProperties.yml index ab8916d9..55f867dc 100644 --- a/api/Vintagestory.API.Common.BlockCropProperties.yml +++ b/api/Vintagestory.API.Common.BlockCropProperties.yml @@ -27,8 +27,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Crop/BlockCropProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockCropProperties path: Common/Collectible/Block/Crop/BlockCropProperties.cs startLine: 9 @@ -72,8 +72,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Crop/BlockCropProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RequiredNutrient path: Common/Collectible/Block/Crop/BlockCropProperties.cs startLine: 16 @@ -113,8 +113,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Crop/BlockCropProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NutrientConsumption path: Common/Collectible/Block/Crop/BlockCropProperties.cs startLine: 22 @@ -154,8 +154,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Crop/BlockCropProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GrowthStages path: Common/Collectible/Block/Crop/BlockCropProperties.cs startLine: 28 @@ -195,8 +195,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Crop/BlockCropProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TotalGrowthDays path: Common/Collectible/Block/Crop/BlockCropProperties.cs startLine: 34 @@ -236,8 +236,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Crop/BlockCropProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TotalGrowthMonths path: Common/Collectible/Block/Crop/BlockCropProperties.cs startLine: 40 @@ -277,8 +277,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Crop/BlockCropProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MultipleHarvests path: Common/Collectible/Block/Crop/BlockCropProperties.cs startLine: 46 @@ -318,8 +318,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Crop/BlockCropProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HarvestGrowthStageLoss path: Common/Collectible/Block/Crop/BlockCropProperties.cs startLine: 52 @@ -359,8 +359,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Crop/BlockCropProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColdDamageBelow path: Common/Collectible/Block/Crop/BlockCropProperties.cs startLine: 55 @@ -398,8 +398,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Crop/BlockCropProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DamageGrowthStuntMul path: Common/Collectible/Block/Crop/BlockCropProperties.cs startLine: 57 @@ -437,8 +437,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Crop/BlockCropProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColdDamageRipeMul path: Common/Collectible/Block/Crop/BlockCropProperties.cs startLine: 59 @@ -476,8 +476,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Crop/BlockCropProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HeatDamageAbove path: Common/Collectible/Block/Crop/BlockCropProperties.cs startLine: 62 @@ -515,8 +515,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Crop/BlockCropProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Behaviors path: Common/Collectible/Block/Crop/BlockCropProperties.cs startLine: 67 diff --git a/api/Vintagestory.API.Common.BlockCubeParticles.yml b/api/Vintagestory.API.Common.BlockCubeParticles.yml index 4096f722..e35583bf 100644 --- a/api/Vintagestory.API.Common.BlockCubeParticles.yml +++ b/api/Vintagestory.API.Common.BlockCubeParticles.yml @@ -35,8 +35,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockCubeParticles path: Common/Particle/BlockVoxelParticles.cs startLine: 6 @@ -99,8 +99,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: particlePos path: Common/Particle/BlockVoxelParticles.cs startLine: 11 @@ -128,8 +128,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: quantity path: Common/Particle/BlockVoxelParticles.cs startLine: 16 @@ -157,8 +157,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: radius path: Common/Particle/BlockVoxelParticles.cs startLine: 21 @@ -186,8 +186,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: scale path: Common/Particle/BlockVoxelParticles.cs startLine: 26 @@ -215,8 +215,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: velocity path: Common/Particle/BlockVoxelParticles.cs startLine: 30 @@ -242,8 +242,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DieInLiquid path: Common/Particle/BlockVoxelParticles.cs startLine: 32 @@ -275,8 +275,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Particle/BlockVoxelParticles.cs startLine: 34 @@ -304,8 +304,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Particle/BlockVoxelParticles.cs startLine: 36 @@ -348,8 +348,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Init path: Common/Particle/BlockVoxelParticles.cs startLine: 47 @@ -381,8 +381,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRgbaColor path: Common/Particle/BlockVoxelParticles.cs startLine: 54 @@ -416,8 +416,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pos path: Common/Particle/BlockVoxelParticles.cs startLine: 59 @@ -449,8 +449,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetVelocity path: Common/Particle/BlockVoxelParticles.cs startLine: 61 @@ -485,8 +485,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Size path: Common/Particle/BlockVoxelParticles.cs startLine: 77 @@ -518,8 +518,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParticleModel path: Common/Particle/BlockVoxelParticles.cs startLine: 79 @@ -551,8 +551,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Quantity path: Common/Particle/BlockVoxelParticles.cs startLine: 81 @@ -584,8 +584,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LifeLength path: Common/Particle/BlockVoxelParticles.cs startLine: 83 @@ -617,8 +617,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VertexFlags path: Common/Particle/BlockVoxelParticles.cs startLine: 85 @@ -650,8 +650,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SecondaryParticles path: Common/Particle/BlockVoxelParticles.cs startLine: 87 @@ -683,8 +683,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Common/Particle/BlockVoxelParticles.cs startLine: 88 @@ -716,8 +716,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Particle/BlockVoxelParticles.cs startLine: 99 diff --git a/api/Vintagestory.API.Common.BlockDamage.yml b/api/Vintagestory.API.Common.BlockDamage.yml index c5fd997e..a153f8ed 100644 --- a/api/Vintagestory.API.Common.BlockDamage.yml +++ b/api/Vintagestory.API.Common.BlockDamage.yml @@ -25,8 +25,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockDamage path: Common/Particle/CollectibleParticleProperties.cs startLine: 7 @@ -60,8 +60,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ByPlayer path: Common/Particle/CollectibleParticleProperties.cs startLine: 9 @@ -87,8 +87,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DecalId path: Common/Particle/CollectibleParticleProperties.cs startLine: 11 @@ -114,8 +114,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Position path: Common/Particle/CollectibleParticleProperties.cs startLine: 13 @@ -141,8 +141,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Facing path: Common/Particle/CollectibleParticleProperties.cs startLine: 14 @@ -168,8 +168,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Block path: Common/Particle/CollectibleParticleProperties.cs startLine: 15 @@ -195,8 +195,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemainingResistance path: Common/Particle/CollectibleParticleProperties.cs startLine: 17 @@ -222,8 +222,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LastBreakEllapsedMs path: Common/Particle/CollectibleParticleProperties.cs startLine: 20 @@ -249,8 +249,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeginBreakEllapsedMs path: Common/Particle/CollectibleParticleProperties.cs startLine: 22 @@ -276,8 +276,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Tool path: Common/Particle/CollectibleParticleProperties.cs startLine: 24 @@ -303,8 +303,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BreakingCounter path: Common/Particle/CollectibleParticleProperties.cs startLine: 26 diff --git a/api/Vintagestory.API.Common.BlockDropItemStack.yml b/api/Vintagestory.API.Common.BlockDropItemStack.yml index 1ad6a2b1..0353fc72 100644 --- a/api/Vintagestory.API.Common.BlockDropItemStack.yml +++ b/api/Vintagestory.API.Common.BlockDropItemStack.yml @@ -30,8 +30,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockDropItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockDropItemStack path: Common/Collectible/Block/BlockDropItemStack.cs startLine: 11 @@ -67,8 +67,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockDropItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Type path: Common/Collectible/Block/BlockDropItemStack.cs startLine: 16 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockDropItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Common/Collectible/Block/BlockDropItemStack.cs startLine: 20 @@ -125,8 +125,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockDropItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Quantity path: Common/Collectible/Block/BlockDropItemStack.cs startLine: 24 @@ -154,8 +154,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockDropItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Attributes path: Common/Collectible/Block/BlockDropItemStack.cs startLine: 29 @@ -202,8 +202,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockDropItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LastDrop path: Common/Collectible/Block/BlockDropItemStack.cs startLine: 33 @@ -231,8 +231,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockDropItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Tool path: Common/Collectible/Block/BlockDropItemStack.cs startLine: 37 @@ -260,8 +260,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockDropItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ResolvedItemstack path: Common/Collectible/Block/BlockDropItemStack.cs startLine: 42 @@ -289,8 +289,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockDropItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DropModbyStat path: Common/Collectible/Block/BlockDropItemStack.cs startLine: 47 @@ -318,8 +318,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockDropItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Collectible/Block/BlockDropItemStack.cs startLine: 53 @@ -347,8 +347,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockDropItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Collectible/Block/BlockDropItemStack.cs startLine: 58 @@ -381,8 +381,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockDropItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Resolve path: Common/Collectible/Block/BlockDropItemStack.cs startLine: 73 @@ -425,8 +425,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockDropItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetNextItemStack path: Common/Collectible/Block/BlockDropItemStack.cs startLine: 115 @@ -462,8 +462,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockDropItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Collectible/Block/BlockDropItemStack.cs startLine: 134 @@ -493,8 +493,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockDropItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Collectible/Block/BlockDropItemStack.cs startLine: 157 @@ -528,8 +528,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockDropItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Common/Collectible/Block/BlockDropItemStack.cs startLine: 175 diff --git a/api/Vintagestory.API.Common.BlockEntity.yml b/api/Vintagestory.API.Common.BlockEntity.yml index e5390132..f971777a 100644 --- a/api/Vintagestory.API.Common.BlockEntity.yml +++ b/api/Vintagestory.API.Common.BlockEntity.yml @@ -47,8 +47,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockEntity path: Common/Collectible/Block/BlockEntity.cs startLine: 14 @@ -84,8 +84,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TickHandlers path: Common/Collectible/Block/BlockEntity.cs startLine: 16 @@ -111,8 +111,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CallbackHandlers path: Common/Collectible/Block/BlockEntity.cs startLine: 17 @@ -138,8 +138,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Api path: Common/Collectible/Block/BlockEntity.cs startLine: 22 @@ -167,8 +167,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pos path: Common/Collectible/Block/BlockEntity.cs startLine: 27 @@ -196,8 +196,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Block path: Common/Collectible/Block/BlockEntity.cs startLine: 32 @@ -227,8 +227,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Behaviors path: Common/Collectible/Block/BlockEntity.cs startLine: 37 @@ -256,8 +256,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Collectible/Block/BlockEntity.cs startLine: 43 @@ -287,8 +287,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBehavior path: Common/Collectible/Block/BlockEntity.cs startLine: 47 @@ -320,8 +320,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Initialize path: Common/Collectible/Block/BlockEntity.cs startLine: 67 @@ -357,8 +357,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateBehaviors path: Common/Collectible/Block/BlockEntity.cs startLine: 78 @@ -388,8 +388,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterGameTickListener path: Common/Collectible/Block/BlockEntity.cs startLine: 105 @@ -432,8 +432,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UnregisterGameTickListener path: Common/Collectible/Block/BlockEntity.cs startLine: 117 @@ -467,8 +467,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterDelayedCallback path: Common/Collectible/Block/BlockEntity.cs startLine: 129 @@ -508,8 +508,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UnregisterDelayedCallback path: Common/Collectible/Block/BlockEntity.cs startLine: 142 @@ -543,8 +543,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TickingExceptionHandler path: Common/Collectible/Block/BlockEntity.cs startLine: 148 @@ -572,8 +572,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBlockRemoved path: Common/Collectible/Block/BlockEntity.cs startLine: 159 @@ -600,8 +600,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnExchanged path: Common/Collectible/Block/BlockEntity.cs startLine: 183 @@ -632,8 +632,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBlockBroken path: Common/Collectible/Block/BlockEntity.cs startLine: 223 @@ -666,8 +666,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HistoryStateRestore path: Common/Collectible/Block/BlockEntity.cs startLine: 234 @@ -694,8 +694,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBlockUnloaded path: Common/Collectible/Block/BlockEntity.cs startLine: 242 @@ -722,8 +722,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBlockPlaced path: Common/Collectible/Block/BlockEntity.cs startLine: 266 @@ -753,8 +753,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToTreeAttributes path: Common/Collectible/Block/BlockEntity.cs startLine: 278 @@ -785,8 +785,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromTreeAttributes path: Common/Collectible/Block/BlockEntity.cs startLine: 308 @@ -823,8 +823,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnReceivedClientPacket path: Common/Collectible/Block/BlockEntity.cs startLine: 331 @@ -864,8 +864,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnReceivedServerPacket path: Common/Collectible/Block/BlockEntity.cs startLine: 344 @@ -902,8 +902,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MarkDirty path: Common/Collectible/Block/BlockEntity.cs startLine: 359 @@ -943,8 +943,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlockInfo path: Common/Collectible/Block/BlockEntity.cs startLine: 376 @@ -978,8 +978,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnStoreCollectibleMappings path: Common/Collectible/Block/BlockEntity.cs startLine: 390 @@ -1016,8 +1016,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnLoadCollectibleMappings path: Common/Collectible/Block/BlockEntity.cs startLine: 407 @@ -1077,8 +1077,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnLoadCollectibleMappings path: Common/Collectible/Block/BlockEntity.cs startLine: 423 @@ -1129,8 +1129,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnTesselation path: Common/Collectible/Block/BlockEntity.cs startLine: 440 @@ -1172,8 +1172,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnPlacementBySchematic path: Common/Collectible/Block/BlockEntity.cs startLine: 462 diff --git a/api/Vintagestory.API.Common.BlockEntityBehavior.yml b/api/Vintagestory.API.Common.BlockEntityBehavior.yml index fd66031f..8e597d02 100644 --- a/api/Vintagestory.API.Common.BlockEntityBehavior.yml +++ b/api/Vintagestory.API.Common.BlockEntityBehavior.yml @@ -36,8 +36,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockEntityBehavior path: Common/Collectible/Block/BlockEntityBehavior.cs startLine: 23 @@ -73,8 +73,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Blockentity path: Common/Collectible/Block/BlockEntityBehavior.cs startLine: 28 @@ -102,8 +102,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pos path: Common/Collectible/Block/BlockEntityBehavior.cs startLine: 33 @@ -133,8 +133,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Block path: Common/Collectible/Block/BlockEntityBehavior.cs startLine: 38 @@ -164,8 +164,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: properties path: Common/Collectible/Block/BlockEntityBehavior.cs startLine: 43 @@ -193,8 +193,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Api path: Common/Collectible/Block/BlockEntityBehavior.cs startLine: 45 @@ -220,8 +220,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Collectible/Block/BlockEntityBehavior.cs startLine: 47 @@ -252,8 +252,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Initialize path: Common/Collectible/Block/BlockEntityBehavior.cs startLine: 57 @@ -287,8 +287,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBlockRemoved path: Common/Collectible/Block/BlockEntityBehavior.cs startLine: 62 @@ -313,8 +313,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBlockUnloaded path: Common/Collectible/Block/BlockEntityBehavior.cs startLine: 67 @@ -339,8 +339,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBlockBroken path: Common/Collectible/Block/BlockEntityBehavior.cs startLine: 72 @@ -368,8 +368,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBlockPlaced path: Common/Collectible/Block/BlockEntityBehavior.cs startLine: 77 @@ -397,8 +397,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToTreeAttributes path: Common/Collectible/Block/BlockEntityBehavior.cs startLine: 82 @@ -426,8 +426,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromTreeAttributes path: Common/Collectible/Block/BlockEntityBehavior.cs startLine: 87 @@ -457,8 +457,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnReceivedClientPacket path: Common/Collectible/Block/BlockEntityBehavior.cs startLine: 92 @@ -493,8 +493,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnReceivedServerPacket path: Common/Collectible/Block/BlockEntityBehavior.cs startLine: 97 @@ -527,8 +527,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlockInfo path: Common/Collectible/Block/BlockEntityBehavior.cs startLine: 102 @@ -558,8 +558,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnStoreCollectibleMappings path: Common/Collectible/Block/BlockEntityBehavior.cs startLine: 107 @@ -592,8 +592,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnLoadCollectibleMappings path: Common/Collectible/Block/BlockEntityBehavior.cs startLine: 112 @@ -642,8 +642,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnLoadCollectibleMappings path: Common/Collectible/Block/BlockEntityBehavior.cs startLine: 118 @@ -682,8 +682,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnTesselation path: Common/Collectible/Block/BlockEntityBehavior.cs startLine: 123 @@ -715,8 +715,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnPlacementBySchematic path: Common/Collectible/Block/BlockEntityBehavior.cs startLine: 128 diff --git a/api/Vintagestory.API.Common.BlockEntityBehaviorType.yml b/api/Vintagestory.API.Common.BlockEntityBehaviorType.yml index ebdecc0c..3d57ed8e 100644 --- a/api/Vintagestory.API.Common.BlockEntityBehaviorType.yml +++ b/api/Vintagestory.API.Common.BlockEntityBehaviorType.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockEntityBehaviorType path: Common/Collectible/Block/BlockEntityBehavior.cs startLine: 11 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Name path: Common/Collectible/Block/BlockEntityBehavior.cs startLine: 14 @@ -89,8 +89,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockEntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: properties path: Common/Collectible/Block/BlockEntityBehavior.cs startLine: 17 diff --git a/api/Vintagestory.API.Common.BlockGeneric.yml b/api/Vintagestory.API.Common.BlockGeneric.yml index 7a9aa0ae..93cca5b0 100644 --- a/api/Vintagestory.API.Common.BlockGeneric.yml +++ b/api/Vintagestory.API.Common.BlockGeneric.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockGeneric path: Common/Collectible/Block/BlockGeneric.cs startLine: 6 @@ -398,8 +398,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDecal path: Common/Collectible/Block/BlockGeneric.cs startLine: 8 @@ -446,8 +446,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnDecalTesselation path: Common/Collectible/Block/BlockGeneric.cs startLine: 31 @@ -481,8 +481,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetParticleBreakBox path: Common/Collectible/Block/BlockGeneric.cs startLine: 54 @@ -523,8 +523,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetParticleCollisionBoxes path: Common/Collectible/Block/BlockGeneric.cs startLine: 76 @@ -562,8 +562,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCollisionBoxes path: Common/Collectible/Block/BlockGeneric.cs startLine: 106 @@ -601,8 +601,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSelectionBoxes path: Common/Collectible/Block/BlockGeneric.cs startLine: 135 @@ -640,8 +640,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryPlaceBlockForWorldGen path: Common/Collectible/Block/BlockGeneric.cs startLine: 165 @@ -685,8 +685,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DoParticalSelection path: Common/Collectible/Block/BlockGeneric.cs startLine: 192 diff --git a/api/Vintagestory.API.Common.BlockLayersAccess.yml b/api/Vintagestory.API.Common.BlockLayersAccess.yml index 1516b829..3008f168 100644 --- a/api/Vintagestory.API.Common.BlockLayersAccess.yml +++ b/api/Vintagestory.API.Common.BlockLayersAccess.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Common/API/BlockLayersAccess.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockLayersAccess path: Common/API/BlockLayersAccess.cs startLine: 7 @@ -63,8 +63,8 @@ items: source: remote: path: VintagestoryApi/Common/API/BlockLayersAccess.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Default path: Common/API/BlockLayersAccess.cs startLine: 16 @@ -101,8 +101,8 @@ items: source: remote: path: VintagestoryApi/Common/API/BlockLayersAccess.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SolidBlocks path: Common/API/BlockLayersAccess.cs startLine: 21 @@ -130,8 +130,8 @@ items: source: remote: path: VintagestoryApi/Common/API/BlockLayersAccess.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Solid path: Common/API/BlockLayersAccess.cs startLine: 26 @@ -159,8 +159,8 @@ items: source: remote: path: VintagestoryApi/Common/API/BlockLayersAccess.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Fluid path: Common/API/BlockLayersAccess.cs startLine: 31 @@ -188,8 +188,8 @@ items: source: remote: path: VintagestoryApi/Common/API/BlockLayersAccess.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FluidOrSolid path: Common/API/BlockLayersAccess.cs startLine: 36 @@ -217,8 +217,8 @@ items: source: remote: path: VintagestoryApi/Common/API/BlockLayersAccess.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MostSolid path: Common/API/BlockLayersAccess.cs startLine: 45 diff --git a/api/Vintagestory.API.Common.BlockMaterialUtil.yml b/api/Vintagestory.API.Common.BlockMaterialUtil.yml index 0b1a3770..0eac7102 100644 --- a/api/Vintagestory.API.Common.BlockMaterialUtil.yml +++ b/api/Vintagestory.API.Common.BlockMaterialUtil.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/EnumBlockMaterial.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockMaterialUtil path: Common/Collectible/Block/EnumBlockMaterial.cs startLine: 36 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/EnumBlockMaterial.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaterialBlastResistance path: Common/Collectible/Block/EnumBlockMaterial.cs startLine: 144 @@ -90,8 +90,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/EnumBlockMaterial.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaterialBlastDropChances path: Common/Collectible/Block/EnumBlockMaterial.cs startLine: 155 diff --git a/api/Vintagestory.API.Common.BlockOffsetAndNumber.yml b/api/Vintagestory.API.Common.BlockOffsetAndNumber.yml index 1a08e669..2320567a 100644 --- a/api/Vintagestory.API.Common.BlockOffsetAndNumber.yml +++ b/api/Vintagestory.API.Common.BlockOffsetAndNumber.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/MultiblockStructure.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockOffsetAndNumber path: Common/MultiblockStructure.cs startLine: 8 @@ -62,8 +62,8 @@ items: source: remote: path: VintagestoryApi/Common/MultiblockStructure.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/MultiblockStructure.cs startLine: 10 @@ -91,8 +91,8 @@ items: source: remote: path: VintagestoryApi/Common/MultiblockStructure.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/MultiblockStructure.cs startLine: 14 @@ -129,8 +129,8 @@ items: source: remote: path: VintagestoryApi/Common/MultiblockStructure.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockNumber path: Common/MultiblockStructure.cs startLine: 18 diff --git a/api/Vintagestory.API.Common.BlockPlacedDelegate.yml b/api/Vintagestory.API.Common.BlockPlacedDelegate.yml index c1809775..57d098f0 100644 --- a/api/Vintagestory.API.Common.BlockPlacedDelegate.yml +++ b/api/Vintagestory.API.Common.BlockPlacedDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockPlacedDelegate path: Common/API/Delegates.cs startLine: 139 diff --git a/api/Vintagestory.API.Common.BlockSchematic.yml b/api/Vintagestory.API.Common.BlockSchematic.yml index 595180ab..c5440de9 100644 --- a/api/Vintagestory.API.Common.BlockSchematic.yml +++ b/api/Vintagestory.API.Common.BlockSchematic.yml @@ -73,8 +73,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockSchematic path: Common/Collectible/Block/BlockSchematic.cs startLine: 43 @@ -120,8 +120,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GameVersion path: Common/Collectible/Block/BlockSchematic.cs startLine: 47 @@ -157,8 +157,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SizeX path: Common/Collectible/Block/BlockSchematic.cs startLine: 49 @@ -194,8 +194,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SizeY path: Common/Collectible/Block/BlockSchematic.cs startLine: 51 @@ -231,8 +231,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SizeZ path: Common/Collectible/Block/BlockSchematic.cs startLine: 53 @@ -268,8 +268,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockCodes path: Common/Collectible/Block/BlockSchematic.cs startLine: 55 @@ -305,8 +305,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ItemCodes path: Common/Collectible/Block/BlockSchematic.cs startLine: 57 @@ -342,8 +342,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Indices path: Common/Collectible/Block/BlockSchematic.cs startLine: 59 @@ -379,8 +379,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockIds path: Common/Collectible/Block/BlockSchematic.cs startLine: 61 @@ -416,8 +416,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DecorIndices path: Common/Collectible/Block/BlockSchematic.cs startLine: 63 @@ -453,8 +453,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DecorIds path: Common/Collectible/Block/BlockSchematic.cs startLine: 65 @@ -490,8 +490,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockEntities path: Common/Collectible/Block/BlockSchematic.cs startLine: 67 @@ -527,8 +527,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Entities path: Common/Collectible/Block/BlockSchematic.cs startLine: 69 @@ -564,8 +564,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReplaceMode path: Common/Collectible/Block/BlockSchematic.cs startLine: 72 @@ -601,8 +601,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntranceRotation path: Common/Collectible/Block/BlockSchematic.cs startLine: 75 @@ -638,8 +638,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlocksUnpacked path: Common/Collectible/Block/BlockSchematic.cs startLine: 77 @@ -665,8 +665,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FluidsLayerUnpacked path: Common/Collectible/Block/BlockSchematic.cs startLine: 78 @@ -692,8 +692,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockEntitiesUnpacked path: Common/Collectible/Block/BlockSchematic.cs startLine: 79 @@ -719,8 +719,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntitiesUnpacked path: Common/Collectible/Block/BlockSchematic.cs startLine: 80 @@ -746,8 +746,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DecorsUnpacked path: Common/Collectible/Block/BlockSchematic.cs startLine: 81 @@ -773,8 +773,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PackedOffset path: Common/Collectible/Block/BlockSchematic.cs startLine: 82 @@ -800,8 +800,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: fillerBlock path: Common/Collectible/Block/BlockSchematic.cs startLine: 84 @@ -827,8 +827,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: pathwayBlock path: Common/Collectible/Block/BlockSchematic.cs startLine: 85 @@ -854,8 +854,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: undergroundBlock path: Common/Collectible/Block/BlockSchematic.cs startLine: 86 @@ -881,8 +881,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: empty path: Common/Collectible/Block/BlockSchematic.cs startLine: 88 @@ -908,8 +908,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OmitLiquids path: Common/Collectible/Block/BlockSchematic.cs startLine: 89 @@ -935,8 +935,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PathwaySides path: Common/Collectible/Block/BlockSchematic.cs startLine: 91 @@ -962,8 +962,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PathwayStarts path: Common/Collectible/Block/BlockSchematic.cs startLine: 95 @@ -991,8 +991,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PathwayOffsets path: Common/Collectible/Block/BlockSchematic.cs startLine: 99 @@ -1020,8 +1020,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UndergroundCheckPositions path: Common/Collectible/Block/BlockSchematic.cs startLine: 101 @@ -1047,15 +1047,18 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockRemaps path: Common/Collectible/Block/BlockSchematic.cs - startLine: 106 + startLine: 107 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common - summary: Set by the RemapperAssistant in OnFinalizeAssets + summary: >- + Set by the RemapperAssistant in OnFinalizeAssets + +
Heads up!: This is unordered, it will iterate through the different game versions' remaps not necessarily in the order they originally appear in remaps.json config. If any block remaps over the years have duplicate original block names, behavior for those ones may be unpredictable example: [] syntax: content: public static Dictionary> BlockRemaps { get; set; } @@ -1078,11 +1081,11 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ItemRemaps path: Common/Collectible/Block/BlockSchematic.cs - startLine: 111 + startLine: 112 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1109,11 +1112,11 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Collectible/Block/BlockSchematic.cs - startLine: 113 + startLine: 114 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1138,11 +1141,11 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Init path: Common/Collectible/Block/BlockSchematic.cs - startLine: 118 + startLine: 119 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1167,11 +1170,11 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InitMetaBlocks path: Common/Collectible/Block/BlockSchematic.cs - startLine: 158 + startLine: 159 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1196,11 +1199,11 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadMetaInformationAndValidate path: Common/Collectible/Block/BlockSchematic.cs - startLine: 171 + startLine: 172 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1237,11 +1240,11 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddArea path: Common/Collectible/Block/BlockSchematic.cs - startLine: 329 + startLine: 330 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1275,11 +1278,11 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pack path: Common/Collectible/Block/BlockSchematic.cs - startLine: 375 + startLine: 376 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1308,11 +1311,11 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Place path: Common/Collectible/Block/BlockSchematic.cs - startLine: 536 + startLine: 537 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1355,11 +1358,11 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Place path: Common/Collectible/Block/BlockSchematic.cs - startLine: 552 + startLine: 553 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1405,11 +1408,11 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlaceDecors path: Common/Collectible/Block/BlockSchematic.cs - startLine: 625 + startLine: 626 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1436,11 +1439,11 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlaceDecors path: Common/Collectible/Block/BlockSchematic.cs - startLine: 639 + startLine: 640 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1469,11 +1472,11 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TransformWhilePacked path: Common/Collectible/Block/BlockSchematic.cs - startLine: 682 + startLine: 683 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1513,11 +1516,11 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlaceEntitiesAndBlockEntities path: Common/Collectible/Block/BlockSchematic.cs - startLine: 993 + startLine: 994 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1575,11 +1578,11 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetJustPositions path: Common/Collectible/Block/BlockSchematic.cs - startLine: 1112 + startLine: 1124 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1610,11 +1613,11 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetStartPos path: Common/Collectible/Block/BlockSchematic.cs - startLine: 1138 + startLine: 1150 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1648,11 +1651,11 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AdjustStartPos path: Common/Collectible/Block/BlockSchematic.cs - startLine: 1149 + startLine: 1161 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1686,11 +1689,11 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadFromFile path: Common/Collectible/Block/BlockSchematic.cs - startLine: 1180 + startLine: 1192 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1727,11 +1730,11 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadFromString path: Common/Collectible/Block/BlockSchematic.cs - startLine: 1218 + startLine: 1230 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1768,11 +1771,11 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Save path: Common/Collectible/Block/BlockSchematic.cs - startLine: 1236 + startLine: 1248 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1806,11 +1809,11 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToJson path: Common/Collectible/Block/BlockSchematic.cs - startLine: 1260 + startLine: 1272 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1834,11 +1837,11 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EncodeBlockEntityData path: Common/Collectible/Block/BlockSchematic.cs - startLine: 1272 + startLine: 1284 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1869,11 +1872,11 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StringEncodeTreeAttribute path: Common/Collectible/Block/BlockSchematic.cs - startLine: 1285 + startLine: 1297 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1904,11 +1907,11 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DecodeBlockEntityData path: Common/Collectible/Block/BlockSchematic.cs - startLine: 1304 + startLine: 1316 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1942,11 +1945,11 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlaceReplaceAll path: Common/Collectible/Block/BlockSchematic.cs - startLine: 1323 + startLine: 1335 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -1982,11 +1985,11 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlaceReplaceable path: Common/Collectible/Block/BlockSchematic.cs - startLine: 1329 + startLine: 1341 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -2022,11 +2025,11 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlaceReplaceAllNoAir path: Common/Collectible/Block/BlockSchematic.cs - startLine: 1339 + startLine: 1351 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -2062,11 +2065,11 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlaceReplaceOnlyAir path: Common/Collectible/Block/BlockSchematic.cs - startLine: 1349 + startLine: 1361 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common @@ -2102,11 +2105,11 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClonePacked path: Common/Collectible/Block/BlockSchematic.cs - startLine: 1366 + startLine: 1378 assemblies: - VintagestoryAPI namespace: Vintagestory.API.Common diff --git a/api/Vintagestory.API.Common.BlockSelection.yml b/api/Vintagestory.API.Common.BlockSelection.yml index caa1e414..a8c8dbd5 100644 --- a/api/Vintagestory.API.Common.BlockSelection.yml +++ b/api/Vintagestory.API.Common.BlockSelection.yml @@ -28,8 +28,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSelection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockSelection path: Common/Collectible/Block/BlockSelection.cs startLine: 7 @@ -65,8 +65,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSelection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Position path: Common/Collectible/Block/BlockSelection.cs startLine: 12 @@ -94,8 +94,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSelection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Face path: Common/Collectible/Block/BlockSelection.cs startLine: 17 @@ -123,8 +123,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSelection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HitPosition path: Common/Collectible/Block/BlockSelection.cs startLine: 22 @@ -152,8 +152,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSelection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SelectionBoxIndex path: Common/Collectible/Block/BlockSelection.cs startLine: 27 @@ -181,8 +181,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSelection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DidOffset path: Common/Collectible/Block/BlockSelection.cs startLine: 34 @@ -215,8 +215,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSelection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Block path: Common/Collectible/Block/BlockSelection.cs startLine: 39 @@ -244,8 +244,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSelection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Collectible/Block/BlockSelection.cs startLine: 41 @@ -273,8 +273,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSelection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FullPosition path: Common/Collectible/Block/BlockSelection.cs startLine: 45 @@ -302,8 +302,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSelection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Collectible/Block/BlockSelection.cs startLine: 50 @@ -340,8 +340,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSelection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Collectible/Block/BlockSelection.cs startLine: 62 @@ -371,8 +371,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSelection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToDecorIndex path: Common/Collectible/Block/BlockSelection.cs startLine: 78 @@ -402,8 +402,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSelection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDecorIndex path: Common/Collectible/Block/BlockSelection.cs startLine: 94 @@ -449,8 +449,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSelection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDecorIndex path: Common/Collectible/Block/BlockSelection.cs startLine: 127 diff --git a/api/Vintagestory.API.Common.BlockSounds.yml b/api/Vintagestory.API.Common.BlockSounds.yml index e505542f..b3cc8e01 100644 --- a/api/Vintagestory.API.Common.BlockSounds.yml +++ b/api/Vintagestory.API.Common.BlockSounds.yml @@ -29,8 +29,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockSounds path: Common/Collectible/Block/BlockSounds.cs startLine: 5 @@ -64,8 +64,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Walk path: Common/Collectible/Block/BlockSounds.cs startLine: 7 @@ -93,8 +93,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Inside path: Common/Collectible/Block/BlockSounds.cs startLine: 8 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Break path: Common/Collectible/Block/BlockSounds.cs startLine: 9 @@ -151,8 +151,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Place path: Common/Collectible/Block/BlockSounds.cs startLine: 10 @@ -180,8 +180,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Hit path: Common/Collectible/Block/BlockSounds.cs startLine: 11 @@ -209,8 +209,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Ambient path: Common/Collectible/Block/BlockSounds.cs startLine: 13 @@ -236,8 +236,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AmbientBlockCount path: Common/Collectible/Block/BlockSounds.cs startLine: 15 @@ -263,8 +263,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ByTool path: Common/Collectible/Block/BlockSounds.cs startLine: 20 @@ -294,8 +294,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Collectible/Block/BlockSounds.cs startLine: 26 @@ -325,8 +325,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBreakSound path: Common/Collectible/Block/BlockSounds.cs startLine: 52 @@ -360,8 +360,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHitSound path: Common/Collectible/Block/BlockSounds.cs startLine: 63 @@ -395,8 +395,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBreakSound path: Common/Collectible/Block/BlockSounds.cs startLine: 74 @@ -430,8 +430,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHitSound path: Common/Collectible/Block/BlockSounds.cs startLine: 88 @@ -465,8 +465,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnDeserializedMethod path: Common/Collectible/Block/BlockSounds.cs startLine: 99 diff --git a/api/Vintagestory.API.Common.BlockUpdate.yml b/api/Vintagestory.API.Common.BlockUpdate.yml index 81254618..46ce66ad 100644 --- a/api/Vintagestory.API.Common.BlockUpdate.yml +++ b/api/Vintagestory.API.Common.BlockUpdate.yml @@ -25,8 +25,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockUpdate path: Common/API/IBlockAccessor.cs startLine: 7 @@ -60,8 +60,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExchangeOnly path: Common/API/IBlockAccessor.cs startLine: 9 @@ -87,8 +87,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pos path: Common/API/IBlockAccessor.cs startLine: 10 @@ -114,8 +114,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OldBlockId path: Common/API/IBlockAccessor.cs startLine: 14 @@ -143,8 +143,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OldFluidBlockId path: Common/API/IBlockAccessor.cs startLine: 18 @@ -172,8 +172,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NewSolidBlockId path: Common/API/IBlockAccessor.cs startLine: 22 @@ -201,8 +201,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NewFluidBlockId path: Common/API/IBlockAccessor.cs startLine: 26 @@ -230,8 +230,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ByStack path: Common/API/IBlockAccessor.cs startLine: 27 @@ -257,8 +257,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OldBlockEntityData path: Common/API/IBlockAccessor.cs startLine: 29 @@ -284,8 +284,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NewBlockEntityData path: Common/API/IBlockAccessor.cs startLine: 30 @@ -311,8 +311,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Decor path: Common/API/IBlockAccessor.cs startLine: 31 diff --git a/api/Vintagestory.API.Common.BlockUsedDelegate.yml b/api/Vintagestory.API.Common.BlockUsedDelegate.yml index 26dc7c49..f1920448 100644 --- a/api/Vintagestory.API.Common.BlockUsedDelegate.yml +++ b/api/Vintagestory.API.Common.BlockUsedDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockUsedDelegate path: Common/API/Delegates.cs startLine: 137 diff --git a/api/Vintagestory.API.Common.BoolArgParser.yml b/api/Vintagestory.API.Common.BoolArgParser.yml index 307830bb..d5173379 100644 --- a/api/Vintagestory.API.Common.BoolArgParser.yml +++ b/api/Vintagestory.API.Common.BoolArgParser.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BoolArgParser path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1573 @@ -73,8 +73,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1578 @@ -109,8 +109,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSyntaxExplanation path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1582 @@ -145,8 +145,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1587 @@ -175,8 +175,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1592 @@ -211,8 +211,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1597 @@ -242,8 +242,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1603 diff --git a/api/Vintagestory.API.Common.Caller.yml b/api/Vintagestory.API.Common.Caller.yml index 900ac8b8..69b4190f 100644 --- a/api/Vintagestory.API.Common.Caller.yml +++ b/api/Vintagestory.API.Common.Caller.yml @@ -25,8 +25,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Caller path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 60 @@ -60,8 +60,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Type path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 62 @@ -87,8 +87,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CallerPrivileges path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 63 @@ -114,8 +114,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CallerRole path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 64 @@ -141,8 +141,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromChatGroupId path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 65 @@ -168,8 +168,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pos path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 66 @@ -195,8 +195,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Player path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 71 @@ -224,8 +224,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Entity path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 83 @@ -253,8 +253,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HasPrivilege path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 96 @@ -287,8 +287,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRole path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 103 @@ -318,8 +318,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetName path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 109 diff --git a/api/Vintagestory.API.Common.CanPlaceOrBreakDelegate.yml b/api/Vintagestory.API.Common.CanPlaceOrBreakDelegate.yml index 53113b4e..f40ad772 100644 --- a/api/Vintagestory.API.Common.CanPlaceOrBreakDelegate.yml +++ b/api/Vintagestory.API.Common.CanPlaceOrBreakDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanPlaceOrBreakDelegate path: Common/API/Delegates.cs startLine: 144 diff --git a/api/Vintagestory.API.Common.CanSpawnNearbyDelegate.yml b/api/Vintagestory.API.Common.CanSpawnNearbyDelegate.yml index b2eda6b1..847d03da 100644 --- a/api/Vintagestory.API.Common.CanSpawnNearbyDelegate.yml +++ b/api/Vintagestory.API.Common.CanSpawnNearbyDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanSpawnNearbyDelegate path: Common/Entity/EntityPlayer.cs startLine: 17 diff --git a/api/Vintagestory.API.Common.CanUseDelegate.yml b/api/Vintagestory.API.Common.CanUseDelegate.yml index 0a6b2c66..cf4a8a21 100644 --- a/api/Vintagestory.API.Common.CanUseDelegate.yml +++ b/api/Vintagestory.API.Common.CanUseDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanUseDelegate path: Common/API/Delegates.cs startLine: 143 diff --git a/api/Vintagestory.API.Common.ChatCommand.yml b/api/Vintagestory.API.Common.ChatCommand.yml index b6257cb7..9a52861d 100644 --- a/api/Vintagestory.API.Common.ChatCommand.yml +++ b/api/Vintagestory.API.Common.ChatCommand.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/Legacy/ChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChatCommand path: Common/API/ChatCommand/Legacy/ChatCommand.cs startLine: 10 @@ -63,8 +63,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/Legacy/ChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Command path: Common/API/ChatCommand/Legacy/ChatCommand.cs startLine: 15 @@ -92,8 +92,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/Legacy/ChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Syntax path: Common/API/ChatCommand/Legacy/ChatCommand.cs startLine: 20 @@ -121,8 +121,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/Legacy/ChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Description path: Common/API/ChatCommand/Legacy/ChatCommand.cs startLine: 25 @@ -150,8 +150,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/Legacy/ChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RequiredPrivilege path: Common/API/ChatCommand/Legacy/ChatCommand.cs startLine: 30 @@ -179,8 +179,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/Legacy/ChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CallHandler path: Common/API/ChatCommand/Legacy/ChatCommand.cs startLine: 38 @@ -220,8 +220,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/Legacy/ChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDescription path: Common/API/ChatCommand/Legacy/ChatCommand.cs startLine: 44 @@ -251,8 +251,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/Legacy/ChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSyntax path: Common/API/ChatCommand/Legacy/ChatCommand.cs startLine: 53 @@ -282,8 +282,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/Legacy/ChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHelpMessage path: Common/API/ChatCommand/Legacy/ChatCommand.cs startLine: 62 diff --git a/api/Vintagestory.API.Common.ChatCommandComparer.yml b/api/Vintagestory.API.Common.ChatCommandComparer.yml index 85bf10b9..953fc740 100644 --- a/api/Vintagestory.API.Common.ChatCommandComparer.yml +++ b/api/Vintagestory.API.Common.ChatCommandComparer.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/ChatCommandComparer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChatCommandComparer path: Common/API/ChatCommand/ChatCommandComparer.cs startLine: 4 @@ -55,8 +55,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/ChatCommandComparer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Comparer path: Common/API/ChatCommand/ChatCommandComparer.cs startLine: 7 @@ -84,8 +84,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/ChatCommandComparer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Common/API/ChatCommand/ChatCommandComparer.cs startLine: 14 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/ChatCommandComparer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHashCode path: Common/API/ChatCommand/ChatCommandComparer.cs startLine: 19 diff --git a/api/Vintagestory.API.Common.ChatLine.yml b/api/Vintagestory.API.Common.ChatLine.yml index 3f10ed07..f805764e 100644 --- a/api/Vintagestory.API.Common.ChatLine.yml +++ b/api/Vintagestory.API.Common.ChatLine.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/ChatLine.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChatLine path: Common/Text/ChatLine.cs startLine: 5 @@ -55,8 +55,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/ChatLine.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ByPlayerUID path: Common/Text/ChatLine.cs startLine: 10 @@ -84,8 +84,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/ChatLine.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Message path: Common/Text/ChatLine.cs startLine: 15 @@ -113,8 +113,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/ChatLine.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChatType path: Common/Text/ChatLine.cs startLine: 20 diff --git a/api/Vintagestory.API.Common.ChunkColumnBeginLoadChunkThread.yml b/api/Vintagestory.API.Common.ChunkColumnBeginLoadChunkThread.yml index ad0c4514..09334c24 100644 --- a/api/Vintagestory.API.Common.ChunkColumnBeginLoadChunkThread.yml +++ b/api/Vintagestory.API.Common.ChunkColumnBeginLoadChunkThread.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChunkColumnBeginLoadChunkThread path: Common/API/IEventAPI.cs startLine: 37 diff --git a/api/Vintagestory.API.Common.ChunkColumnGenerationDelegate.yml b/api/Vintagestory.API.Common.ChunkColumnGenerationDelegate.yml index 78fb22f1..204d7d37 100644 --- a/api/Vintagestory.API.Common.ChunkColumnGenerationDelegate.yml +++ b/api/Vintagestory.API.Common.ChunkColumnGenerationDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChunkColumnGenerationDelegate path: Common/API/Delegates.cs startLine: 124 diff --git a/api/Vintagestory.API.Common.ChunkColumnLoadedDelegate.yml b/api/Vintagestory.API.Common.ChunkColumnLoadedDelegate.yml index 6c6874ca..a9d4f886 100644 --- a/api/Vintagestory.API.Common.ChunkColumnLoadedDelegate.yml +++ b/api/Vintagestory.API.Common.ChunkColumnLoadedDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChunkColumnLoadedDelegate path: Common/API/IEventAPI.cs startLine: 44 diff --git a/api/Vintagestory.API.Common.ChunkColumnUnloadDelegate.yml b/api/Vintagestory.API.Common.ChunkColumnUnloadDelegate.yml index 6c88b4d8..944543fc 100644 --- a/api/Vintagestory.API.Common.ChunkColumnUnloadDelegate.yml +++ b/api/Vintagestory.API.Common.ChunkColumnUnloadDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChunkColumnUnloadDelegate path: Common/API/IEventAPI.cs startLine: 50 diff --git a/api/Vintagestory.API.Common.ChunkDirtyDelegate.yml b/api/Vintagestory.API.Common.ChunkDirtyDelegate.yml index bcdefb5e..4d1e83db 100644 --- a/api/Vintagestory.API.Common.ChunkDirtyDelegate.yml +++ b/api/Vintagestory.API.Common.ChunkDirtyDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChunkDirtyDelegate path: Common/API/IEventAPI.cs startLine: 28 diff --git a/api/Vintagestory.API.Common.ClientAnimator.yml b/api/Vintagestory.API.Common.ClientAnimator.yml index 4c7c9410..4a7f0997 100644 --- a/api/Vintagestory.API.Common.ClientAnimator.yml +++ b/api/Vintagestory.API.Common.ClientAnimator.yml @@ -32,8 +32,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ClientAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClientAnimator path: Common/Model/Animation/ClientAnimator.cs startLine: 14 @@ -93,8 +93,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ClientAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: rootElements path: Common/Model/Animation/ClientAnimator.cs startLine: 16 @@ -120,8 +120,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ClientAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RootPoses path: Common/Model/Animation/ClientAnimator.cs startLine: 17 @@ -147,8 +147,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ClientAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: jointsDone path: Common/Model/Animation/ClientAnimator.cs startLine: 19 @@ -174,8 +174,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ClientAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: jointsById path: Common/Model/Animation/ClientAnimator.cs startLine: 20 @@ -201,8 +201,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ClientAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxConcurrentAnimations path: Common/Model/Animation/ClientAnimator.cs startLine: 22 @@ -228,8 +228,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ClientAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateForEntity path: Common/Model/Animation/ClientAnimator.cs startLine: 31 @@ -270,8 +270,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ClientAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateForEntity path: Common/Model/Animation/ClientAnimator.cs startLine: 57 @@ -310,8 +310,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ClientAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Model/Animation/ClientAnimator.cs startLine: 82 @@ -346,8 +346,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ClientAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Model/Animation/ClientAnimator.cs startLine: 87 @@ -388,8 +388,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ClientAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Model/Animation/ClientAnimator.cs startLine: 96 @@ -428,8 +428,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ClientAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: initFields path: Common/Model/Animation/ClientAnimator.cs startLine: 106 @@ -454,8 +454,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ClientAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadAttachmentPoints path: Common/Model/Animation/ClientAnimator.cs startLine: 122 @@ -486,8 +486,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ClientAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadPosesAndAttachmentPoints path: Common/Model/Animation/ClientAnimator.cs startLine: 147 @@ -520,8 +520,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ClientAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetPosebyName path: Common/Model/Animation/ClientAnimator.cs startLine: 193 @@ -558,8 +558,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ClientAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AnimNowActive path: Common/Model/Animation/ClientAnimator.cs startLine: 215 @@ -591,8 +591,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ClientAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnFrame path: Common/Model/Animation/ClientAnimator.cs startLine: 233 @@ -630,8 +630,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ClientAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: calculateMatrices path: Common/Model/Animation/ClientAnimator.cs startLine: 247 diff --git a/api/Vintagestory.API.Common.ClientChatCommand.yml b/api/Vintagestory.API.Common.ClientChatCommand.yml index 860d38a0..a1a11d43 100644 --- a/api/Vintagestory.API.Common.ClientChatCommand.yml +++ b/api/Vintagestory.API.Common.ClientChatCommand.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/Legacy/ChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClientChatCommand path: Common/API/ChatCommand/Legacy/ChatCommand.cs startLine: 97 @@ -62,8 +62,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/Legacy/ChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: handler path: Common/API/ChatCommand/Legacy/ChatCommand.cs startLine: 99 @@ -89,8 +89,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/Legacy/ChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CallHandler path: Common/API/ChatCommand/Legacy/ChatCommand.cs startLine: 101 diff --git a/api/Vintagestory.API.Common.ClientChatCommandDelegate.yml b/api/Vintagestory.API.Common.ClientChatCommandDelegate.yml index d4472701..6abc8cc2 100644 --- a/api/Vintagestory.API.Common.ClientChatCommandDelegate.yml +++ b/api/Vintagestory.API.Common.ClientChatCommandDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/Legacy/ChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClientChatCommandDelegate path: Common/API/ChatCommand/Legacy/ChatCommand.cs startLine: 5 diff --git a/api/Vintagestory.API.Common.ClimateCondition.yml b/api/Vintagestory.API.Common.ClimateCondition.yml index 97da5800..6633344d 100644 --- a/api/Vintagestory.API.Common.ClimateCondition.yml +++ b/api/Vintagestory.API.Common.ClimateCondition.yml @@ -25,8 +25,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClimateCondition path: Common/API/IBlockAccessor.cs startLine: 60 @@ -61,8 +61,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Temperature path: Common/API/IBlockAccessor.cs startLine: 65 @@ -90,8 +90,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WorldgenRainfall path: Common/API/IBlockAccessor.cs startLine: 70 @@ -119,8 +119,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WorldGenTemperature path: Common/API/IBlockAccessor.cs startLine: 75 @@ -148,8 +148,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GeologicActivity path: Common/API/IBlockAccessor.cs startLine: 80 @@ -177,8 +177,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rainfall path: Common/API/IBlockAccessor.cs startLine: 85 @@ -206,8 +206,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RainCloudOverlay path: Common/API/IBlockAccessor.cs startLine: 87 @@ -233,8 +233,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Fertility path: Common/API/IBlockAccessor.cs startLine: 92 @@ -262,8 +262,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ForestDensity path: Common/API/IBlockAccessor.cs startLine: 97 @@ -291,8 +291,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShrubDensity path: Common/API/IBlockAccessor.cs startLine: 101 @@ -320,8 +320,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetLerped path: Common/API/IBlockAccessor.cs startLine: 103 diff --git a/api/Vintagestory.API.Common.CmdArgs.yml b/api/Vintagestory.API.Common.CmdArgs.yml index 87e5896c..15448cf2 100644 --- a/api/Vintagestory.API.Common.CmdArgs.yml +++ b/api/Vintagestory.API.Common.CmdArgs.yml @@ -41,8 +41,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CmdArgs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CmdArgs path: Common/API/ChatCommand/CmdArgs.cs startLine: 14 @@ -78,8 +78,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CmdArgs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CmdArgs.cs startLine: 21 @@ -109,8 +109,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CmdArgs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CmdArgs.cs startLine: 29 @@ -144,8 +144,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CmdArgs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Push path: Common/API/ChatCommand/CmdArgs.cs startLine: 35 @@ -176,8 +176,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CmdArgs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CmdArgs.cs startLine: 52 @@ -211,8 +211,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CmdArgs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Common/API/ChatCommand/CmdArgs.cs startLine: 62 @@ -249,8 +249,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CmdArgs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Length path: Common/API/ChatCommand/CmdArgs.cs startLine: 71 @@ -280,8 +280,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CmdArgs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PopAll path: Common/API/ChatCommand/CmdArgs.cs startLine: 82 @@ -311,8 +311,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CmdArgs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PeekChar path: Common/API/ChatCommand/CmdArgs.cs startLine: 95 @@ -349,8 +349,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CmdArgs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PopChar path: Common/API/ChatCommand/CmdArgs.cs startLine: 108 @@ -387,8 +387,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CmdArgs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PopWord path: Common/API/ChatCommand/CmdArgs.cs startLine: 121 @@ -423,8 +423,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CmdArgs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PeekWord path: Common/API/ChatCommand/CmdArgs.cs startLine: 135 @@ -459,8 +459,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CmdArgs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PopUntil path: Common/API/ChatCommand/CmdArgs.cs startLine: 144 @@ -493,8 +493,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CmdArgs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PopCodeBlock path: Common/API/ChatCommand/CmdArgs.cs startLine: 158 @@ -531,8 +531,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CmdArgs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PushSingle path: Common/API/ChatCommand/CmdArgs.cs startLine: 202 @@ -566,8 +566,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CmdArgs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AppendSingle path: Common/API/ChatCommand/CmdArgs.cs startLine: 211 @@ -601,8 +601,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CmdArgs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PopEnum path: Common/API/ChatCommand/CmdArgs.cs startLine: 222 @@ -642,8 +642,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CmdArgs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PopInt path: Common/API/ChatCommand/CmdArgs.cs startLine: 244 @@ -680,8 +680,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CmdArgs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PopLong path: Common/API/ChatCommand/CmdArgs.cs startLine: 284 @@ -718,8 +718,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CmdArgs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PopBool path: Common/API/ChatCommand/CmdArgs.cs startLine: 307 @@ -762,8 +762,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CmdArgs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PopDouble path: Common/API/ChatCommand/CmdArgs.cs startLine: 321 @@ -800,8 +800,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CmdArgs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PopFloat path: Common/API/ChatCommand/CmdArgs.cs startLine: 334 @@ -838,8 +838,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CmdArgs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PopVec3i path: Common/API/ChatCommand/CmdArgs.cs startLine: 347 @@ -873,8 +873,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CmdArgs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PopVec3d path: Common/API/ChatCommand/CmdArgs.cs startLine: 358 @@ -904,8 +904,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CmdArgs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PopFlexiblePos path: Common/API/ChatCommand/CmdArgs.cs startLine: 381 @@ -955,8 +955,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CmdArgs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PopFlexiblePos2D path: Common/API/ChatCommand/CmdArgs.cs startLine: 440 @@ -1006,8 +1006,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CmdArgs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/API/ChatCommand/CmdArgs.cs startLine: 489 diff --git a/api/Vintagestory.API.Common.CollectibleArgParser.yml b/api/Vintagestory.API.Common.CollectibleArgParser.yml index cc038a6b..92e9eb8a 100644 --- a/api/Vintagestory.API.Common.CollectibleArgParser.yml +++ b/api/Vintagestory.API.Common.CollectibleArgParser.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CollectibleArgParser path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 775 @@ -73,8 +73,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 782 @@ -111,8 +111,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSyntaxExplanation path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 787 @@ -147,8 +147,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValidRange path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 792 @@ -180,8 +180,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 812 @@ -210,8 +210,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 817 @@ -246,8 +246,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 822 @@ -277,8 +277,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 828 diff --git a/api/Vintagestory.API.Common.CollectibleBehavior.yml b/api/Vintagestory.API.Common.CollectibleBehavior.yml index 50cb1ffb..9d214775 100644 --- a/api/Vintagestory.API.Common.CollectibleBehavior.yml +++ b/api/Vintagestory.API.Common.CollectibleBehavior.yml @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CollectibleBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CollectibleBehavior path: Common/Collectible/CollectibleBehavior.cs startLine: 8 @@ -81,8 +81,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CollectibleBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: collObj path: Common/Collectible/CollectibleBehavior.cs startLine: 13 @@ -110,8 +110,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CollectibleBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: propertiesAtString path: Common/Collectible/CollectibleBehavior.cs startLine: 18 @@ -139,8 +139,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CollectibleBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClientSideOptional path: Common/Collectible/CollectibleBehavior.cs startLine: 23 @@ -170,8 +170,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CollectibleBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Collectible/CollectibleBehavior.cs startLine: 25 @@ -202,8 +202,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CollectibleBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Initialize path: Common/Collectible/CollectibleBehavior.cs startLine: 34 @@ -234,8 +234,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CollectibleBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnLoaded path: Common/Collectible/CollectibleBehavior.cs startLine: 44 @@ -269,8 +269,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CollectibleBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnUnloaded path: Common/Collectible/CollectibleBehavior.cs startLine: 49 @@ -298,8 +298,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CollectibleBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetStorageFlags path: Common/Collectible/CollectibleBehavior.cs startLine: 54 @@ -334,8 +334,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CollectibleBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnHeldAttackStart path: Common/Collectible/CollectibleBehavior.cs startLine: 70 @@ -384,8 +384,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CollectibleBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnHeldAttackCancel path: Common/Collectible/CollectibleBehavior.cs startLine: 87 @@ -440,8 +440,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CollectibleBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnHeldAttackStep path: Common/Collectible/CollectibleBehavior.cs startLine: 103 @@ -493,8 +493,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CollectibleBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnHeldAttackStop path: Common/Collectible/CollectibleBehavior.cs startLine: 118 @@ -543,8 +543,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CollectibleBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnHeldInteractStart path: Common/Collectible/CollectibleBehavior.cs startLine: 135 @@ -596,8 +596,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CollectibleBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnHeldInteractStep path: Common/Collectible/CollectibleBehavior.cs startLine: 151 @@ -649,8 +649,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CollectibleBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnHeldInteractStop path: Common/Collectible/CollectibleBehavior.cs startLine: 166 @@ -699,8 +699,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CollectibleBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnHeldInteractCancel path: Common/Collectible/CollectibleBehavior.cs startLine: 184 @@ -755,8 +755,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CollectibleBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBeforeRender path: Common/Collectible/CollectibleBehavior.cs startLine: 196 @@ -799,8 +799,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CollectibleBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHeldInteractionHelp path: Common/Collectible/CollectibleBehavior.cs startLine: 208 @@ -840,8 +840,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CollectibleBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetToolModes path: Common/Collectible/CollectibleBehavior.cs startLine: 217 @@ -877,8 +877,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CollectibleBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetToolMode path: Common/Collectible/CollectibleBehavior.cs startLine: 225 @@ -914,8 +914,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CollectibleBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetToolMode path: Common/Collectible/CollectibleBehavior.cs startLine: 233 @@ -954,8 +954,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CollectibleBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHeldItemInfo path: Common/Collectible/CollectibleBehavior.cs startLine: 238 @@ -992,8 +992,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CollectibleBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHeldItemName path: Common/Collectible/CollectibleBehavior.cs startLine: 243 @@ -1023,8 +1023,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CollectibleBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBlockBrokenWith path: Common/Collectible/CollectibleBehavior.cs startLine: 257 @@ -1075,8 +1075,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CollectibleBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBlockBreaking path: Common/Collectible/CollectibleBehavior.cs startLine: 275 @@ -1131,8 +1131,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CollectibleBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHeldTpHitAnimation path: Common/Collectible/CollectibleBehavior.cs startLine: 281 @@ -1169,8 +1169,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CollectibleBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHeldReadyAnimation path: Common/Collectible/CollectibleBehavior.cs startLine: 286 @@ -1209,8 +1209,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CollectibleBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHeldTpIdleAnimation path: Common/Collectible/CollectibleBehavior.cs startLine: 291 @@ -1249,8 +1249,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CollectibleBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHeldTpUseAnimation path: Common/Collectible/CollectibleBehavior.cs startLine: 296 diff --git a/api/Vintagestory.API.Common.CollectibleBehaviorDelegate.yml b/api/Vintagestory.API.Common.CollectibleBehaviorDelegate.yml index ac5b65b0..3da6aba3 100644 --- a/api/Vintagestory.API.Common.CollectibleBehaviorDelegate.yml +++ b/api/Vintagestory.API.Common.CollectibleBehaviorDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CollectibleBehaviorDelegate path: Common/Collectible/Collectible.cs startLine: 15 diff --git a/api/Vintagestory.API.Common.CollectibleObject.yml b/api/Vintagestory.API.Common.CollectibleObject.yml index 4d8853d6..ef6a7b10 100644 --- a/api/Vintagestory.API.Common.CollectibleObject.yml +++ b/api/Vintagestory.API.Common.CollectibleObject.yml @@ -166,8 +166,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CollectibleObject path: Common/Collectible/Collectible.cs startLine: 21 @@ -228,8 +228,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MatterState path: Common/Collectible/Collectible.cs startLine: 26 @@ -257,8 +257,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsMissing path: Common/Collectible/Collectible.cs startLine: 32 @@ -291,8 +291,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Id path: Common/Collectible/Collectible.cs startLine: 37 @@ -322,8 +322,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHashCode path: Common/Collectible/Collectible.cs startLine: 42 @@ -353,8 +353,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ItemClass path: Common/Collectible/Collectible.cs startLine: 50 @@ -384,8 +384,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxStackSize path: Common/Collectible/Collectible.cs startLine: 56 @@ -413,8 +413,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Durability path: Common/Collectible/Collectible.cs startLine: 61 @@ -442,8 +442,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dimensions path: Common/Collectible/Collectible.cs startLine: 66 @@ -471,8 +471,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LiquidSelectable path: Common/Collectible/Collectible.cs startLine: 71 @@ -500,8 +500,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AttackPower path: Common/Collectible/Collectible.cs startLine: 76 @@ -529,8 +529,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HeldPriorityInteract path: Common/Collectible/Collectible.cs startLine: 81 @@ -558,8 +558,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AttackRange path: Common/Collectible/Collectible.cs startLine: 87 @@ -587,8 +587,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DamagedBy path: Common/Collectible/Collectible.cs startLine: 92 @@ -616,8 +616,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MiningSpeed path: Common/Collectible/Collectible.cs startLine: 97 @@ -645,8 +645,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToolTier path: Common/Collectible/Collectible.cs startLine: 102 @@ -674,8 +674,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MiningTier path: Common/Collectible/Collectible.cs startLine: 104 @@ -715,8 +715,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HeldSounds path: Common/Collectible/Collectible.cs startLine: 107 @@ -742,8 +742,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreativeInventoryTabs path: Common/Collectible/Collectible.cs startLine: 112 @@ -771,8 +771,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreativeInventoryStacks path: Common/Collectible/Collectible.cs startLine: 117 @@ -800,8 +800,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderAlphaTest path: Common/Collectible/Collectible.cs startLine: 122 @@ -829,8 +829,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiTransform path: Common/Collectible/Collectible.cs startLine: 127 @@ -858,8 +858,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FpHandTransform path: Common/Collectible/Collectible.cs startLine: 132 @@ -887,8 +887,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TpHandTransform path: Common/Collectible/Collectible.cs startLine: 137 @@ -916,8 +916,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TpOffHandTransform path: Common/Collectible/Collectible.cs startLine: 142 @@ -945,8 +945,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GroundTransform path: Common/Collectible/Collectible.cs startLine: 147 @@ -974,8 +974,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Attributes path: Common/Collectible/Collectible.cs startLine: 152 @@ -1003,8 +1003,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CombustibleProps path: Common/Collectible/Collectible.cs startLine: 157 @@ -1032,8 +1032,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NutritionProps path: Common/Collectible/Collectible.cs startLine: 162 @@ -1061,8 +1061,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TransitionableProps path: Common/Collectible/Collectible.cs startLine: 167 @@ -1090,8 +1090,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GrindingProps path: Common/Collectible/Collectible.cs startLine: 172 @@ -1119,8 +1119,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CrushingProps path: Common/Collectible/Collectible.cs startLine: 177 @@ -1148,8 +1148,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParticleProperties path: Common/Collectible/Collectible.cs startLine: 182 @@ -1177,8 +1177,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TopMiddlePos path: Common/Collectible/Collectible.cs startLine: 187 @@ -1206,8 +1206,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Tool path: Common/Collectible/Collectible.cs startLine: 193 @@ -1235,8 +1235,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StorageFlags path: Common/Collectible/Collectible.cs startLine: 198 @@ -1264,8 +1264,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaterialDensity path: Common/Collectible/Collectible.cs startLine: 203 @@ -1293,8 +1293,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HeldTpHitAnimation path: Common/Collectible/Collectible.cs startLine: 208 @@ -1322,8 +1322,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HeldRightTpIdleAnimation path: Common/Collectible/Collectible.cs startLine: 213 @@ -1351,8 +1351,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HeldLeftTpIdleAnimation path: Common/Collectible/Collectible.cs startLine: 218 @@ -1380,8 +1380,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HeldLeftReadyAnimation path: Common/Collectible/Collectible.cs startLine: 223 @@ -1409,8 +1409,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HeldRightReadyAnimation path: Common/Collectible/Collectible.cs startLine: 228 @@ -1438,8 +1438,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HeldTpUseAnimation path: Common/Collectible/Collectible.cs startLine: 234 @@ -1467,8 +1467,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: api path: Common/Collectible/Collectible.cs startLine: 241 @@ -1496,8 +1496,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CollectibleBehaviors path: Common/Collectible/Collectible.cs startLine: 247 @@ -1525,8 +1525,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LightHsv path: Common/Collectible/Collectible.cs startLine: 252 @@ -1554,8 +1554,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnLoadedNative path: Common/Collectible/Collectible.cs startLine: 257 @@ -1583,8 +1583,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnLoaded path: Common/Collectible/Collectible.cs startLine: 267 @@ -1617,8 +1617,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnUnloaded path: Common/Collectible/Collectible.cs startLine: 279 @@ -1649,8 +1649,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetLightHsv path: Common/Collectible/Collectible.cs startLine: 295 @@ -1693,8 +1693,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetNutritionProperties path: Common/Collectible/Collectible.cs startLine: 307 @@ -1734,8 +1734,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetTransitionableProperties path: Common/Collectible/Collectible.cs startLine: 319 @@ -1775,8 +1775,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RequiresTransitionableTicking path: Common/Collectible/Collectible.cs startLine: 332 @@ -1816,8 +1816,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetStorageFlags path: Common/Collectible/Collectible.cs startLine: 343 @@ -1851,8 +1851,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetItemDamageColor path: Common/Collectible/Collectible.cs startLine: 374 @@ -1886,8 +1886,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldDisplayItemDamage path: Common/Collectible/Collectible.cs startLine: 389 @@ -1921,8 +1921,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBeforeRender path: Common/Collectible/Collectible.cs startLine: 404 @@ -1968,8 +1968,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDurability path: Common/Collectible/Collectible.cs startLine: 413 @@ -2011,8 +2011,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMaxDurability path: Common/Collectible/Collectible.cs startLine: 421 @@ -2046,8 +2046,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRemainingDurability path: Common/Collectible/Collectible.cs startLine: 426 @@ -2077,8 +2077,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAttackPower path: Common/Collectible/Collectible.cs startLine: 436 @@ -2112,8 +2112,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAttackRange path: Common/Collectible/Collectible.cs startLine: 446 @@ -2147,8 +2147,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBlockBreaking path: Common/Collectible/Collectible.cs startLine: 463 @@ -2200,8 +2200,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnModifiedInInventorySlot path: Common/Collectible/Collectible.cs startLine: 542 @@ -2238,8 +2238,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnBlockBrokenWith path: Common/Collectible/Collectible.cs startLine: 556 @@ -2288,8 +2288,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMiningSpeed path: Common/Collectible/Collectible.cs startLine: 600 @@ -2332,8 +2332,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GeldHeldFpHitAnimation path: Common/Collectible/Collectible.cs startLine: 622 @@ -2380,8 +2380,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHeldTpHitAnimation path: Common/Collectible/Collectible.cs startLine: 634 @@ -2418,8 +2418,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHeldReadyAnimation path: Common/Collectible/Collectible.cs startLine: 656 @@ -2459,8 +2459,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHeldTpIdleAnimation path: Common/Collectible/Collectible.cs startLine: 679 @@ -2500,8 +2500,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHeldTpUseAnimation path: Common/Collectible/Collectible.cs startLine: 700 @@ -2538,8 +2538,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnAttackingWith path: Common/Collectible/Collectible.cs startLine: 727 @@ -2579,8 +2579,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MatchesForCrafting path: Common/Collectible/Collectible.cs startLine: 743 @@ -2620,8 +2620,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnConsumedByCrafting path: Common/Collectible/Collectible.cs startLine: 760 @@ -2670,8 +2670,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnCreatedByCrafting path: Common/Collectible/Collectible.cs startLine: 796 @@ -2711,8 +2711,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ConsumeCraftingIngredients path: Common/Collectible/Collectible.cs startLine: 861 @@ -2755,8 +2755,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DamageItem path: Common/Collectible/Collectible.cs startLine: 877 @@ -2799,8 +2799,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RefillSlotIfEmpty path: Common/Collectible/Collectible.cs startLine: 922 @@ -2835,8 +2835,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetToolModes path: Common/Collectible/Collectible.cs startLine: 950 @@ -2870,8 +2870,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetToolMode path: Common/Collectible/Collectible.cs startLine: 967 @@ -2911,8 +2911,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetToolMode path: Common/Collectible/Collectible.cs startLine: 984 @@ -2955,8 +2955,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnHeldRenderOpaque path: Common/Collectible/Collectible.cs startLine: 997 @@ -2990,8 +2990,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnHeldRenderOit path: Common/Collectible/Collectible.cs startLine: 1007 @@ -3025,8 +3025,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnHeldRenderOrtho path: Common/Collectible/Collectible.cs startLine: 1017 @@ -3060,8 +3060,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnHeldIdle path: Common/Collectible/Collectible.cs startLine: 1029 @@ -3095,8 +3095,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnGroundIdle path: Common/Collectible/Collectible.cs startLine: 1038 @@ -3127,8 +3127,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InGuiIdle path: Common/Collectible/Collectible.cs startLine: 1061 @@ -3162,8 +3162,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnCollected path: Common/Collectible/Collectible.cs startLine: 1071 @@ -3197,8 +3197,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnHeldUseStart path: Common/Collectible/Collectible.cs startLine: 1090 @@ -3250,8 +3250,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnHeldUseCancel path: Common/Collectible/Collectible.cs startLine: 1114 @@ -3303,8 +3303,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnHeldUseStep path: Common/Collectible/Collectible.cs startLine: 1131 @@ -3353,8 +3353,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnHeldUseStop path: Common/Collectible/Collectible.cs startLine: 1149 @@ -3403,8 +3403,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnHeldAttackStart path: Common/Collectible/Collectible.cs startLine: 1170 @@ -3450,8 +3450,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnHeldAttackCancel path: Common/Collectible/Collectible.cs startLine: 1196 @@ -3503,8 +3503,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnHeldAttackStep path: Common/Collectible/Collectible.cs startLine: 1219 @@ -3553,8 +3553,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnHeldAttackStop path: Common/Collectible/Collectible.cs startLine: 1241 @@ -3600,8 +3600,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnHeldInteractStart path: Common/Collectible/Collectible.cs startLine: 1259 @@ -3650,8 +3650,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnHeldInteractStep path: Common/Collectible/Collectible.cs startLine: 1295 @@ -3700,8 +3700,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnHeldInteractStop path: Common/Collectible/Collectible.cs startLine: 1328 @@ -3747,8 +3747,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnHeldInteractCancel path: Common/Collectible/Collectible.cs startLine: 1359 @@ -3800,8 +3800,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: tryEatBegin path: Common/Collectible/Collectible.cs startLine: 1392 @@ -3847,8 +3847,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: playEatSound path: Common/Collectible/Collectible.cs startLine: 1405 @@ -3883,8 +3883,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: tryEatStep path: Common/Collectible/Collectible.cs startLine: 1428 @@ -3929,8 +3929,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: tryEatStop path: Common/Collectible/Collectible.cs startLine: 1477 @@ -3970,8 +3970,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnHeldDropped path: Common/Collectible/Collectible.cs startLine: 1537 @@ -4020,8 +4020,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHeldItemName path: Common/Collectible/Collectible.cs startLine: 1548 @@ -4055,8 +4055,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHeldItemInfo path: Common/Collectible/Collectible.cs startLine: 1572 @@ -4099,8 +4099,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetItemDescText path: Common/Collectible/Collectible.cs startLine: 1755 @@ -4127,8 +4127,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHeldInteractionHelp path: Common/Collectible/Collectible.cs startLine: 1770 @@ -4162,8 +4162,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AppendPerishableInfoText path: Common/Collectible/Collectible.cs startLine: 1805 @@ -4197,8 +4197,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AppendPerishableInfoText path: Common/Collectible/Collectible.cs startLine: 1823 @@ -4239,8 +4239,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnHandbookRecipeRender path: Common/Collectible/Collectible.cs startLine: 2047 @@ -4283,8 +4283,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHandBookStacks path: Common/Collectible/Collectible.cs startLine: 2060 @@ -4314,8 +4314,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanBePlacedInto path: Common/Collectible/Collectible.cs startLine: 2112 @@ -4352,8 +4352,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMergableQuantity path: Common/Collectible/Collectible.cs startLine: 2124 @@ -4393,8 +4393,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryMergeStacks path: Common/Collectible/Collectible.cs startLine: 2138 @@ -4425,8 +4425,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMeltingDuration path: Common/Collectible/Collectible.cs startLine: 2275 @@ -4466,8 +4466,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMeltingPoint path: Common/Collectible/Collectible.cs startLine: 2287 @@ -4507,8 +4507,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanSmelt path: Common/Collectible/Collectible.cs startLine: 2301 @@ -4551,8 +4551,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DoSmelt path: Common/Collectible/Collectible.cs startLine: 2321 @@ -4592,8 +4592,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanSpoil path: Common/Collectible/Collectible.cs startLine: 2373 @@ -4627,8 +4627,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UpdateAndGetTransitionState path: Common/Collectible/Collectible.cs startLine: 2387 @@ -4668,8 +4668,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetTransitionState path: Common/Collectible/Collectible.cs startLine: 2401 @@ -4704,8 +4704,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetTransitionRateMul path: Common/Collectible/Collectible.cs startLine: 2423 @@ -4739,8 +4739,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UpdateAndGetTransitionStates path: Common/Collectible/Collectible.cs startLine: 2447 @@ -4777,8 +4777,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UpdateAndGetTransitionStatesNative path: Common/Collectible/Collectible.cs startLine: 2458 @@ -4815,8 +4815,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnTransitionNow path: Common/Collectible/Collectible.cs startLine: 2621 @@ -4853,8 +4853,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CarryOverFreshness path: Common/Collectible/Collectible.cs startLine: 2628 @@ -4888,8 +4888,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CarryOverFreshness path: Common/Collectible/Collectible.cs startLine: 2633 @@ -4926,8 +4926,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsReasonablyFresh path: Common/Collectible/Collectible.cs startLine: 2702 @@ -4964,8 +4964,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HasTemperature path: Common/Collectible/Collectible.cs startLine: 2738 @@ -4999,8 +4999,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetTemperature path: Common/Collectible/Collectible.cs startLine: 2750 @@ -5037,8 +5037,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetTemperature path: Common/Collectible/Collectible.cs startLine: 2783 @@ -5081,8 +5081,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsEmptyBackPack path: Common/Collectible/Collectible.cs startLine: 2807 @@ -5116,8 +5116,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsBackPack path: Common/Collectible/Collectible.cs startLine: 2829 @@ -5151,8 +5151,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: QuantityBackPackSlots path: Common/Collectible/Collectible.cs startLine: 2840 @@ -5186,8 +5186,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Common/Collectible/Collectible.cs startLine: 2853 @@ -5230,8 +5230,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Satisfies path: Common/Collectible/Collectible.cs startLine: 2868 @@ -5268,8 +5268,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnStoreCollectibleMappings path: Common/Collectible/Collectible.cs startLine: 2884 @@ -5312,8 +5312,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnLoadCollectibleMappings path: Common/Collectible/Collectible.cs startLine: 2910 @@ -5368,8 +5368,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnLoadCollectibleMappings path: Common/Collectible/Collectible.cs startLine: 2924 @@ -5415,8 +5415,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRandomColor path: Common/Collectible/Collectible.cs startLine: 3005 @@ -5453,8 +5453,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsLiquid path: Common/Collectible/Collectible.cs startLine: 3018 @@ -5489,8 +5489,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCollectibleBehavior path: Common/Collectible/Collectible.cs startLine: 3051 @@ -5530,8 +5530,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCollectibleBehavior path: Common/Collectible/Collectible.cs startLine: 3056 @@ -5566,8 +5566,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBehavior path: Common/Collectible/Collectible.cs startLine: 3061 @@ -5604,8 +5604,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HasBehavior path: Common/Collectible/Collectible.cs startLine: 3094 @@ -5645,8 +5645,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HasBehavior path: Common/Collectible/Collectible.cs startLine: 3106 @@ -5686,8 +5686,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HasBehavior path: Common/Collectible/Collectible.cs startLine: 3119 @@ -5727,8 +5727,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBehavior path: Common/Collectible/Collectible.cs startLine: 3130 @@ -5762,8 +5762,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBehavior path: Common/Collectible/Collectible.cs startLine: 3140 @@ -5799,8 +5799,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnSmeltAttempt path: Common/Collectible/Collectible.cs startLine: 3150 diff --git a/api/Vintagestory.API.Common.CollectibleParticleProperties.yml b/api/Vintagestory.API.Common.CollectibleParticleProperties.yml index 2c24e8f5..cd98b508 100644 --- a/api/Vintagestory.API.Common.CollectibleParticleProperties.yml +++ b/api/Vintagestory.API.Common.CollectibleParticleProperties.yml @@ -54,8 +54,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CollectibleParticleProperties path: Common/Particle/CollectibleParticleProperties.cs startLine: 122 @@ -98,8 +98,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: rand path: Common/Particle/CollectibleParticleProperties.cs startLine: 124 @@ -125,8 +125,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Async path: Common/Particle/CollectibleParticleProperties.cs startLine: 126 @@ -158,8 +158,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Bounciness path: Common/Particle/CollectibleParticleProperties.cs startLine: 127 @@ -190,8 +190,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DieOnRainHeightmap path: Common/Particle/CollectibleParticleProperties.cs startLine: 128 @@ -223,8 +223,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RandomVelocityChange path: Common/Particle/CollectibleParticleProperties.cs startLine: 129 @@ -255,8 +255,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DieInLiquid path: Common/Particle/CollectibleParticleProperties.cs startLine: 130 @@ -289,8 +289,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SwimOnLiquid path: Common/Particle/CollectibleParticleProperties.cs startLine: 130 @@ -321,8 +321,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DieInAir path: Common/Particle/CollectibleParticleProperties.cs startLine: 130 @@ -355,8 +355,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Quantity path: Common/Particle/CollectibleParticleProperties.cs startLine: 130 @@ -389,8 +389,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pos path: Common/Particle/CollectibleParticleProperties.cs startLine: 132 @@ -423,8 +423,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetVelocity path: Common/Particle/CollectibleParticleProperties.cs startLine: 134 @@ -460,8 +460,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRgbaColor path: Common/Particle/CollectibleParticleProperties.cs startLine: 135 @@ -496,8 +496,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VertexFlags path: Common/Particle/CollectibleParticleProperties.cs startLine: 136 @@ -530,8 +530,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParticleModel path: Common/Particle/CollectibleParticleProperties.cs startLine: 137 @@ -564,8 +564,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: api path: Common/Particle/CollectibleParticleProperties.cs startLine: 139 @@ -591,8 +591,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SelfPropelled path: Common/Particle/CollectibleParticleProperties.cs startLine: 141 @@ -628,8 +628,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TerrainCollision path: Common/Particle/CollectibleParticleProperties.cs startLine: 143 @@ -662,8 +662,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Size path: Common/Particle/CollectibleParticleProperties.cs startLine: 144 @@ -696,8 +696,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GravityEffect path: Common/Particle/CollectibleParticleProperties.cs startLine: 146 @@ -730,8 +730,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LifeLength path: Common/Particle/CollectibleParticleProperties.cs startLine: 148 @@ -764,8 +764,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UseLighting path: Common/Particle/CollectibleParticleProperties.cs startLine: 150 @@ -792,8 +792,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RandomBlockPos path: Common/Particle/CollectibleParticleProperties.cs startLine: 158 @@ -829,8 +829,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OpacityEvolve path: Common/Particle/CollectibleParticleProperties.cs startLine: 191 @@ -863,8 +863,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RedEvolve path: Common/Particle/CollectibleParticleProperties.cs startLine: 193 @@ -897,8 +897,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GreenEvolve path: Common/Particle/CollectibleParticleProperties.cs startLine: 193 @@ -931,8 +931,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlueEvolve path: Common/Particle/CollectibleParticleProperties.cs startLine: 193 @@ -965,8 +965,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SizeEvolve path: Common/Particle/CollectibleParticleProperties.cs startLine: 195 @@ -999,8 +999,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorByBlock path: Common/Particle/CollectibleParticleProperties.cs startLine: 197 @@ -1027,8 +1027,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Common/Particle/CollectibleParticleProperties.cs startLine: 202 @@ -1061,8 +1061,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Particle/CollectibleParticleProperties.cs startLine: 207 @@ -1098,8 +1098,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeginParticle path: Common/Particle/CollectibleParticleProperties.cs startLine: 212 @@ -1128,8 +1128,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VelocityEvolve path: Common/Particle/CollectibleParticleProperties.cs startLine: 214 @@ -1162,8 +1162,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SecondaryParticles path: Common/Particle/CollectibleParticleProperties.cs startLine: 216 @@ -1196,8 +1196,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DeathParticles path: Common/Particle/CollectibleParticleProperties.cs startLine: 218 @@ -1230,8 +1230,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SecondarySpawnInterval path: Common/Particle/CollectibleParticleProperties.cs startLine: 219 @@ -1267,8 +1267,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PrepareForSecondarySpawn path: Common/Particle/CollectibleParticleProperties.cs startLine: 221 @@ -1301,8 +1301,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Init path: Common/Particle/CollectibleParticleProperties.cs startLine: 225 @@ -1335,8 +1335,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParentVelocity path: Common/Particle/CollectibleParticleProperties.cs startLine: 231 @@ -1367,8 +1367,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/CollectibleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParentVelocityWeight path: Common/Particle/CollectibleParticleProperties.cs startLine: 233 diff --git a/api/Vintagestory.API.Common.ColorArgParser.yml b/api/Vintagestory.API.Common.ColorArgParser.yml index 4421cb48..1a125221 100644 --- a/api/Vintagestory.API.Common.ColorArgParser.yml +++ b/api/Vintagestory.API.Common.ColorArgParser.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorArgParser path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 2008 @@ -73,8 +73,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 2012 @@ -107,8 +107,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSyntaxExplanation path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 2016 @@ -143,8 +143,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 2021 @@ -173,8 +173,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 2026 @@ -204,8 +204,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 2032 @@ -246,8 +246,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 2060 diff --git a/api/Vintagestory.API.Common.ColorMap.yml b/api/Vintagestory.API.Common.ColorMap.yml index 7e206305..0f5b422e 100644 --- a/api/Vintagestory.API.Common.ColorMap.yml +++ b/api/Vintagestory.API.Common.ColorMap.yml @@ -25,8 +25,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/ColorMap.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorMap path: Common/Texture/ColorMap.cs startLine: 5 @@ -60,8 +60,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/ColorMap.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorMapLoadedFlag path: Common/Texture/ColorMap.cs startLine: 7 @@ -87,8 +87,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/ColorMap.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Common/Texture/ColorMap.cs startLine: 8 @@ -114,8 +114,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/ColorMap.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Texture path: Common/Texture/ColorMap.cs startLine: 9 @@ -141,8 +141,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/ColorMap.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Padding path: Common/Texture/ColorMap.cs startLine: 10 @@ -168,8 +168,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/ColorMap.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadIntoBlockTextureAtlas path: Common/Texture/ColorMap.cs startLine: 11 @@ -195,8 +195,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/ColorMap.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExtraFlags path: Common/Texture/ColorMap.cs startLine: 12 @@ -222,8 +222,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/ColorMap.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pixels path: Common/Texture/ColorMap.cs startLine: 15 @@ -249,8 +249,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/ColorMap.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OuterSize path: Common/Texture/ColorMap.cs startLine: 16 @@ -276,8 +276,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/ColorMap.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockAtlasTextureSubId path: Common/Texture/ColorMap.cs startLine: 17 @@ -303,8 +303,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/ColorMap.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RectIndex path: Common/Texture/ColorMap.cs startLine: 18 diff --git a/api/Vintagestory.API.Common.CombustibleProperties.yml b/api/Vintagestory.API.Common.CombustibleProperties.yml index 6d0d2d92..4c87f833 100644 --- a/api/Vintagestory.API.Common.CombustibleProperties.yml +++ b/api/Vintagestory.API.Common.CombustibleProperties.yml @@ -27,8 +27,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CombustibleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CombustibleProperties path: Common/Collectible/CombustibleProperties.cs startLine: 21 @@ -64,8 +64,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CombustibleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BurnTemperature path: Common/Collectible/CombustibleProperties.cs startLine: 26 @@ -93,8 +93,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CombustibleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BurnDuration path: Common/Collectible/CombustibleProperties.cs startLine: 31 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CombustibleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HeatResistance path: Common/Collectible/CombustibleProperties.cs startLine: 36 @@ -151,8 +151,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CombustibleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MeltingPoint path: Common/Collectible/CombustibleProperties.cs startLine: 41 @@ -180,8 +180,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CombustibleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxTemperature path: Common/Collectible/CombustibleProperties.cs startLine: 46 @@ -209,8 +209,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CombustibleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MeltingDuration path: Common/Collectible/CombustibleProperties.cs startLine: 51 @@ -238,8 +238,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CombustibleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SmokeLevel path: Common/Collectible/CombustibleProperties.cs startLine: 56 @@ -267,8 +267,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CombustibleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SmeltedRatio path: Common/Collectible/CombustibleProperties.cs startLine: 61 @@ -296,8 +296,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CombustibleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SmeltingType path: Common/Collectible/CombustibleProperties.cs startLine: 66 @@ -325,8 +325,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CombustibleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SmeltedStack path: Common/Collectible/CombustibleProperties.cs startLine: 71 @@ -354,8 +354,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CombustibleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RequiresContainer path: Common/Collectible/CombustibleProperties.cs startLine: 76 @@ -383,8 +383,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CombustibleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Collectible/CombustibleProperties.cs startLine: 83 diff --git a/api/Vintagestory.API.Common.CommandAbbr.IChatCommandExt.yml b/api/Vintagestory.API.Common.CommandAbbr.IChatCommandExt.yml index 94c1bc43..8513dcac 100644 --- a/api/Vintagestory.API.Common.CommandAbbr.IChatCommandExt.yml +++ b/api/Vintagestory.API.Common.CommandAbbr.IChatCommandExt.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IChatCommandExt path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 14 @@ -57,8 +57,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithDesc path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 22 @@ -99,8 +99,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeginSub path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 30 @@ -141,8 +141,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeginSubs path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 38 @@ -183,8 +183,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EndSub path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 45 diff --git a/api/Vintagestory.API.Common.CommandArgumentParsers.yml b/api/Vintagestory.API.Common.CommandArgumentParsers.yml index c44b0ad9..78bf4484 100644 --- a/api/Vintagestory.API.Common.CommandArgumentParsers.yml +++ b/api/Vintagestory.API.Common.CommandArgumentParsers.yml @@ -58,8 +58,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CommandArgumentParsers path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 18 @@ -93,8 +93,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 21 @@ -125,8 +125,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Unparsed path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 26 @@ -161,8 +161,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IntDirection path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 28 @@ -195,8 +195,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Entities path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 30 @@ -229,8 +229,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OptionalEntities path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 37 @@ -267,8 +267,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityType path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 39 @@ -301,8 +301,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IntRange path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 41 @@ -339,8 +339,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OptionalIntRange path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 43 @@ -379,8 +379,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OptionalInt path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 45 @@ -415,8 +415,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Int path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 46 @@ -449,8 +449,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OptionalLong path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 48 @@ -485,8 +485,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Long path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 49 @@ -519,8 +519,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Bool path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 51 @@ -555,8 +555,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OptionalBool path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 53 @@ -591,8 +591,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OptionalDouble path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 55 @@ -627,8 +627,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Float path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 57 @@ -661,8 +661,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OptionalFloat path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 59 @@ -697,8 +697,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Double path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 61 @@ -731,8 +731,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DoubleRange path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 62 @@ -769,8 +769,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnlinePlayer path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 69 @@ -807,8 +807,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerUids path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 75 @@ -845,8 +845,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OptionalPlayerUids path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 82 @@ -883,8 +883,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerRole path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 89 @@ -921,8 +921,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OptionalPlayerRole path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 96 @@ -959,8 +959,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Privilege path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 98 @@ -993,8 +993,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OptionalPrivilege path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 101 @@ -1027,8 +1027,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Word path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 104 @@ -1061,8 +1061,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OptionalWord path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 106 @@ -1095,8 +1095,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OptionalWordRange path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 108 @@ -1131,8 +1131,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Word path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 110 @@ -1167,8 +1167,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Color path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 117 @@ -1205,8 +1205,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OptionalColor path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 124 @@ -1243,8 +1243,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: All path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 131 @@ -1281,8 +1281,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OptionalAll path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 138 @@ -1319,8 +1319,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WordRange path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 140 @@ -1355,8 +1355,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WorldPosition path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 141 @@ -1389,8 +1389,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WorldPosition2D path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 142 @@ -1423,8 +1423,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Vec3i path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 144 @@ -1457,8 +1457,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OptionalVec3i path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 146 @@ -1491,8 +1491,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Item path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 148 @@ -1525,8 +1525,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Block path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 149 @@ -1559,8 +1559,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OptionalWorldPosition path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 156 @@ -1597,8 +1597,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DateTime path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 163 diff --git a/api/Vintagestory.API.Common.CommandPreconditionDelegate.yml b/api/Vintagestory.API.Common.CommandPreconditionDelegate.yml index bbbf3581..40c6d28a 100644 --- a/api/Vintagestory.API.Common.CommandPreconditionDelegate.yml +++ b/api/Vintagestory.API.Common.CommandPreconditionDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CommandPreconditionDelegate path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 243 diff --git a/api/Vintagestory.API.Common.CompositeShape.yml b/api/Vintagestory.API.Common.CompositeShape.yml index 829a955d..c2cd19c4 100644 --- a/api/Vintagestory.API.Common.CompositeShape.yml +++ b/api/Vintagestory.API.Common.CompositeShape.yml @@ -37,8 +37,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/CompositeShape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CompositeShape path: Common/Model/Shape/CompositeShape.cs startLine: 12 @@ -71,8 +71,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/CompositeShape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Base path: Common/Model/Shape/CompositeShape.cs startLine: 14 @@ -98,8 +98,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/CompositeShape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Format path: Common/Model/Shape/CompositeShape.cs startLine: 15 @@ -125,8 +125,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/CompositeShape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InsertBakedTextures path: Common/Model/Shape/CompositeShape.cs startLine: 19 @@ -154,8 +154,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/CompositeShape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: rotateX path: Common/Model/Shape/CompositeShape.cs startLine: 21 @@ -181,8 +181,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/CompositeShape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: rotateY path: Common/Model/Shape/CompositeShape.cs startLine: 22 @@ -208,8 +208,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/CompositeShape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: rotateZ path: Common/Model/Shape/CompositeShape.cs startLine: 23 @@ -235,8 +235,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/CompositeShape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: offsetX path: Common/Model/Shape/CompositeShape.cs startLine: 25 @@ -262,8 +262,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/CompositeShape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: offsetY path: Common/Model/Shape/CompositeShape.cs startLine: 26 @@ -289,8 +289,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/CompositeShape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: offsetZ path: Common/Model/Shape/CompositeShape.cs startLine: 27 @@ -316,8 +316,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/CompositeShape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Scale path: Common/Model/Shape/CompositeShape.cs startLine: 29 @@ -343,8 +343,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/CompositeShape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotateXYZCopy path: Common/Model/Shape/CompositeShape.cs startLine: 31 @@ -372,8 +372,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/CompositeShape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OffsetXYZCopy path: Common/Model/Shape/CompositeShape.cs startLine: 32 @@ -401,8 +401,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/CompositeShape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Alternates path: Common/Model/Shape/CompositeShape.cs startLine: 37 @@ -430,8 +430,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/CompositeShape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BakedAlternates path: Common/Model/Shape/CompositeShape.cs startLine: 42 @@ -459,8 +459,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/CompositeShape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Overlays path: Common/Model/Shape/CompositeShape.cs startLine: 44 @@ -486,8 +486,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/CompositeShape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VoxelizeTexture path: Common/Model/Shape/CompositeShape.cs startLine: 49 @@ -515,8 +515,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/CompositeShape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: QuantityElements path: Common/Model/Shape/CompositeShape.cs startLine: 54 @@ -544,8 +544,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/CompositeShape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SelectiveElements path: Common/Model/Shape/CompositeShape.cs startLine: 59 @@ -573,8 +573,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/CompositeShape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHashCode path: Common/Model/Shape/CompositeShape.cs startLine: 62 @@ -605,8 +605,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/CompositeShape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Model/Shape/CompositeShape.cs startLine: 80 @@ -636,8 +636,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/CompositeShape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CloneWithoutAlternates path: Common/Model/Shape/CompositeShape.cs startLine: 103 @@ -667,8 +667,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/CompositeShape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadAlternates path: Common/Model/Shape/CompositeShape.cs startLine: 147 diff --git a/api/Vintagestory.API.Common.CraftingRecipeIngredient.yml b/api/Vintagestory.API.Common.CraftingRecipeIngredient.yml index d8b921c6..a77de543 100644 --- a/api/Vintagestory.API.Common.CraftingRecipeIngredient.yml +++ b/api/Vintagestory.API.Common.CraftingRecipeIngredient.yml @@ -36,8 +36,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/CraftingRecipeIngredient.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CraftingRecipeIngredient path: Common/Crafting/CraftingRecipeIngredient.cs startLine: 11 @@ -76,8 +76,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/CraftingRecipeIngredient.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Type path: Common/Crafting/CraftingRecipeIngredient.cs startLine: 16 @@ -105,8 +105,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/CraftingRecipeIngredient.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Common/Crafting/CraftingRecipeIngredient.cs startLine: 20 @@ -138,8 +138,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/CraftingRecipeIngredient.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Name path: Common/Crafting/CraftingRecipeIngredient.cs startLine: 24 @@ -171,8 +171,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/CraftingRecipeIngredient.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Quantity path: Common/Crafting/CraftingRecipeIngredient.cs startLine: 28 @@ -200,8 +200,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/CraftingRecipeIngredient.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Attributes path: Common/Crafting/CraftingRecipeIngredient.cs startLine: 33 @@ -248,8 +248,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/CraftingRecipeIngredient.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RecipeAttributes path: Common/Crafting/CraftingRecipeIngredient.cs startLine: 39 @@ -296,8 +296,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/CraftingRecipeIngredient.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsTool path: Common/Crafting/CraftingRecipeIngredient.cs startLine: 45 @@ -328,8 +328,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/CraftingRecipeIngredient.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToolDurabilityCost path: Common/Crafting/CraftingRecipeIngredient.cs startLine: 50 @@ -357,8 +357,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/CraftingRecipeIngredient.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AllowedVariants path: Common/Crafting/CraftingRecipeIngredient.cs startLine: 55 @@ -386,8 +386,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/CraftingRecipeIngredient.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SkipVariants path: Common/Crafting/CraftingRecipeIngredient.cs startLine: 61 @@ -415,8 +415,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/CraftingRecipeIngredient.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReturnedStack path: Common/Crafting/CraftingRecipeIngredient.cs startLine: 66 @@ -444,8 +444,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/CraftingRecipeIngredient.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ResolvedItemstack path: Common/Crafting/CraftingRecipeIngredient.cs startLine: 71 @@ -473,8 +473,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/CraftingRecipeIngredient.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsWildCard path: Common/Crafting/CraftingRecipeIngredient.cs startLine: 76 @@ -502,8 +502,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/CraftingRecipeIngredient.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Resolve path: Common/Crafting/CraftingRecipeIngredient.cs startLine: 83 @@ -542,8 +542,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/CraftingRecipeIngredient.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SatisfiesAsIngredient path: Common/Crafting/CraftingRecipeIngredient.cs startLine: 136 @@ -583,8 +583,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/CraftingRecipeIngredient.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Crafting/CraftingRecipeIngredient.cs startLine: 159 @@ -611,8 +611,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/CraftingRecipeIngredient.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CloneTo path: Common/Crafting/CraftingRecipeIngredient.cs startLine: 164 @@ -644,8 +644,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/CraftingRecipeIngredient.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Common/Crafting/CraftingRecipeIngredient.cs startLine: 187 @@ -676,8 +676,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/CraftingRecipeIngredient.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FillPlaceHolder path: Common/Crafting/CraftingRecipeIngredient.cs startLine: 198 @@ -714,8 +714,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/CraftingRecipeIngredient.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Common/Crafting/CraftingRecipeIngredient.cs startLine: 205 @@ -743,8 +743,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/CraftingRecipeIngredient.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Crafting/CraftingRecipeIngredient.cs startLine: 256 diff --git a/api/Vintagestory.API.Common.CreativeInventoryTab.yml b/api/Vintagestory.API.Common.CreativeInventoryTab.yml index d321dd9d..c7f447c4 100644 --- a/api/Vintagestory.API.Common.CreativeInventoryTab.yml +++ b/api/Vintagestory.API.Common.CreativeInventoryTab.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/CreativeInventoryTab.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreativeInventoryTab path: Common/Inventory/CreativeInventoryTab.cs startLine: 2 @@ -140,8 +140,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/CreativeInventoryTab.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TabIndex path: Common/Inventory/CreativeInventoryTab.cs startLine: 4 @@ -167,8 +167,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/CreativeInventoryTab.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Inventory/CreativeInventoryTab.cs startLine: 6 @@ -205,8 +205,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/CreativeInventoryTab.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Inventory/CreativeInventoryTab.cs startLine: 11 @@ -241,8 +241,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/CreativeInventoryTab.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetTransitionSpeedMul path: Common/Inventory/CreativeInventoryTab.cs startLine: 16 @@ -280,8 +280,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/CreativeInventoryTab.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NewSlot path: Common/Inventory/CreativeInventoryTab.cs startLine: 21 diff --git a/api/Vintagestory.API.Common.CreativeTabAndStackList.yml b/api/Vintagestory.API.Common.CreativeTabAndStackList.yml index 4f83d1cd..799aa613 100644 --- a/api/Vintagestory.API.Common.CreativeTabAndStackList.yml +++ b/api/Vintagestory.API.Common.CreativeTabAndStackList.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CreativeTabAndStackList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreativeTabAndStackList path: Common/Collectible/CreativeTabAndStackList.cs startLine: 4 @@ -54,8 +54,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CreativeTabAndStackList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Tabs path: Common/Collectible/CreativeTabAndStackList.cs startLine: 6 @@ -81,8 +81,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CreativeTabAndStackList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Stacks path: Common/Collectible/CreativeTabAndStackList.cs startLine: 7 @@ -108,8 +108,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CreativeTabAndStackList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Collectible/CreativeTabAndStackList.cs startLine: 14 @@ -143,8 +143,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CreativeTabAndStackList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Common/Collectible/CreativeTabAndStackList.cs startLine: 35 diff --git a/api/Vintagestory.API.Common.CropBehavior.yml b/api/Vintagestory.API.Common.CropBehavior.yml index a4fb71fc..acfbd7a5 100644 --- a/api/Vintagestory.API.Common.CropBehavior.yml +++ b/api/Vintagestory.API.Common.CropBehavior.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Crop/CropBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CropBehavior path: Common/Collectible/Block/Crop/CropBehavior.cs startLine: 4 @@ -55,8 +55,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Crop/CropBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: block path: Common/Collectible/Block/Crop/CropBehavior.cs startLine: 6 @@ -82,8 +82,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Crop/CropBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Collectible/Block/Crop/CropBehavior.cs startLine: 8 @@ -114,8 +114,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Crop/CropBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Initialize path: Common/Collectible/Block/Crop/CropBehavior.cs startLine: 17 @@ -146,8 +146,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Crop/CropBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryGrowCrop path: Common/Collectible/Block/Crop/CropBehavior.cs startLine: 28 @@ -196,8 +196,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Crop/CropBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnPlanted path: Common/Collectible/Block/Crop/CropBehavior.cs startLine: 38 diff --git a/api/Vintagestory.API.Common.CrushingProperties.yml b/api/Vintagestory.API.Common.CrushingProperties.yml index be624d02..166b9467 100644 --- a/api/Vintagestory.API.Common.CrushingProperties.yml +++ b/api/Vintagestory.API.Common.CrushingProperties.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CrushingProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CrushingProperties path: Common/Collectible/CrushingProperties.cs startLine: 4 @@ -54,8 +54,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CrushingProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CrushedStack path: Common/Collectible/CrushingProperties.cs startLine: 9 @@ -83,8 +83,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CrushingProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HardnessTier path: Common/Collectible/CrushingProperties.cs startLine: 14 @@ -112,8 +112,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CrushingProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Quantity path: Common/Collectible/CrushingProperties.cs startLine: 16 @@ -139,8 +139,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CrushingProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Collectible/CrushingProperties.cs startLine: 23 diff --git a/api/Vintagestory.API.Common.CustomGetTransitionSpeedMulDelegate.yml b/api/Vintagestory.API.Common.CustomGetTransitionSpeedMulDelegate.yml index 3e149fce..05ad056e 100644 --- a/api/Vintagestory.API.Common.CustomGetTransitionSpeedMulDelegate.yml +++ b/api/Vintagestory.API.Common.CustomGetTransitionSpeedMulDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CustomGetTransitionSpeedMulDelegate path: Common/Inventory/InventoryBase.cs startLine: 22 diff --git a/api/Vintagestory.API.Common.DamageSource.yml b/api/Vintagestory.API.Common.DamageSource.yml index d3e3c66e..a7a6582b 100644 --- a/api/Vintagestory.API.Common.DamageSource.yml +++ b/api/Vintagestory.API.Common.DamageSource.yml @@ -26,8 +26,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/DamageSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DamageSource path: Common/Combat/DamageSource.cs startLine: 5 @@ -61,8 +61,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/DamageSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Source path: Common/Combat/DamageSource.cs startLine: 10 @@ -90,8 +90,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/DamageSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Type path: Common/Combat/DamageSource.cs startLine: 15 @@ -119,8 +119,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/DamageSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HitPosition path: Common/Combat/DamageSource.cs startLine: 20 @@ -148,8 +148,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/DamageSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SourceEntity path: Common/Combat/DamageSource.cs startLine: 25 @@ -177,8 +177,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/DamageSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CauseEntity path: Common/Combat/DamageSource.cs startLine: 30 @@ -206,8 +206,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/DamageSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SourceBlock path: Common/Combat/DamageSource.cs startLine: 35 @@ -235,8 +235,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/DamageSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SourcePos path: Common/Combat/DamageSource.cs startLine: 40 @@ -264,8 +264,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/DamageSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DamageTier path: Common/Combat/DamageSource.cs startLine: 45 @@ -293,8 +293,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/DamageSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: KnockbackStrength path: Common/Combat/DamageSource.cs startLine: 50 @@ -322,8 +322,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/DamageSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSourcePosition path: Common/Combat/DamageSource.cs startLine: 56 @@ -353,8 +353,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/DamageSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCauseEntity path: Common/Combat/DamageSource.cs startLine: 66 diff --git a/api/Vintagestory.API.Common.DatetimeArgParser.yml b/api/Vintagestory.API.Common.DatetimeArgParser.yml index cf189cf6..ba53b608 100644 --- a/api/Vintagestory.API.Common.DatetimeArgParser.yml +++ b/api/Vintagestory.API.Common.DatetimeArgParser.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DatetimeArgParser path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1747 @@ -73,8 +73,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1752 @@ -107,8 +107,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSyntaxExplanation path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1755 @@ -143,8 +143,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1760 @@ -173,8 +173,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1765 @@ -209,8 +209,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1770 @@ -240,8 +240,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1776 diff --git a/api/Vintagestory.API.Common.DecorFlags.yml b/api/Vintagestory.API.Common.DecorFlags.yml index 69ec7550..a6c1ed6b 100644 --- a/api/Vintagestory.API.Common.DecorFlags.yml +++ b/api/Vintagestory.API.Common.DecorFlags.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/DecorFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DecorFlags path: Common/Collectible/DecorFlags.cs startLine: 2 @@ -56,8 +56,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/DecorFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsDecor path: Common/Collectible/DecorFlags.cs startLine: 5 @@ -85,8 +85,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/DecorFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawIfCulled path: Common/Collectible/DecorFlags.cs startLine: 7 @@ -114,8 +114,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/DecorFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AlternateZOffset path: Common/Collectible/DecorFlags.cs startLine: 9 @@ -143,8 +143,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/DecorFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NotFullFace path: Common/Collectible/DecorFlags.cs startLine: 11 @@ -172,8 +172,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/DecorFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Removable path: Common/Collectible/DecorFlags.cs startLine: 13 @@ -201,8 +201,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/DecorFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HasSidedVariants path: Common/Collectible/DecorFlags.cs startLine: 15 diff --git a/api/Vintagestory.API.Common.DecorUpdate.yml b/api/Vintagestory.API.Common.DecorUpdate.yml index ce9eaf0f..fe19fc95 100644 --- a/api/Vintagestory.API.Common.DecorUpdate.yml +++ b/api/Vintagestory.API.Common.DecorUpdate.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DecorUpdate path: Common/API/IBlockAccessor.cs startLine: 34 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OldDecorId path: Common/API/IBlockAccessor.cs startLine: 36 @@ -79,8 +79,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NewDecorId path: Common/API/IBlockAccessor.cs startLine: 37 diff --git a/api/Vintagestory.API.Common.DialogClickDelegate.yml b/api/Vintagestory.API.Common.DialogClickDelegate.yml index a548f831..92d492f7 100644 --- a/api/Vintagestory.API.Common.DialogClickDelegate.yml +++ b/api/Vintagestory.API.Common.DialogClickDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DialogClickDelegate path: Common/API/Delegates.cs startLine: 101 diff --git a/api/Vintagestory.API.Common.DirectionArgParser-1.yml b/api/Vintagestory.API.Common.DirectionArgParser-1.yml index 6c31a590..446f24d2 100644 --- a/api/Vintagestory.API.Common.DirectionArgParser-1.yml +++ b/api/Vintagestory.API.Common.DirectionArgParser-1.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DirectionArgParser path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1806 @@ -78,8 +78,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1811 @@ -112,8 +112,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValidRange path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1815 @@ -147,8 +147,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1820 @@ -179,8 +179,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1825 @@ -212,8 +212,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1831 @@ -254,8 +254,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1885 diff --git a/api/Vintagestory.API.Common.DoubleArgParser.yml b/api/Vintagestory.API.Common.DoubleArgParser.yml index d44e342c..455c56a2 100644 --- a/api/Vintagestory.API.Common.DoubleArgParser.yml +++ b/api/Vintagestory.API.Common.DoubleArgParser.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DoubleArgParser path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1428 @@ -74,8 +74,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1433 @@ -112,8 +112,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSyntaxExplanation path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1438 @@ -148,8 +148,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1443 @@ -184,8 +184,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValidRange path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1450 @@ -217,8 +217,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1455 @@ -247,8 +247,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1460 @@ -278,8 +278,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1466 @@ -320,8 +320,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1490 diff --git a/api/Vintagestory.API.Common.DummyInventory.yml b/api/Vintagestory.API.Common.DummyInventory.yml index c1c1ebc2..51f07bf5 100644 --- a/api/Vintagestory.API.Common.DummyInventory.yml +++ b/api/Vintagestory.API.Common.DummyInventory.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/DummyInventory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DummyInventory path: Common/Inventory/DummyInventory.cs startLine: 7 @@ -132,8 +132,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/DummyInventory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Slots path: Common/Inventory/DummyInventory.cs startLine: 13 @@ -161,8 +161,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/DummyInventory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Inventory/DummyInventory.cs startLine: 15 @@ -195,8 +195,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/DummyInventory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Common/Inventory/DummyInventory.cs startLine: 30 @@ -237,8 +237,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/DummyInventory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Count path: Common/Inventory/DummyInventory.cs startLine: 31 @@ -269,8 +269,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/DummyInventory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromTreeAttributes path: Common/Inventory/DummyInventory.cs startLine: 33 @@ -302,8 +302,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/DummyInventory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToTreeAttributes path: Common/Inventory/DummyInventory.cs startLine: 38 @@ -334,8 +334,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/DummyInventory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetTransitionSpeedMul path: Common/Inventory/DummyInventory.cs startLine: 43 diff --git a/api/Vintagestory.API.Common.DummyLoggerException.yml b/api/Vintagestory.API.Common.DummyLoggerException.yml index bb4d6d9b..9db983b2 100644 --- a/api/Vintagestory.API.Common.DummyLoggerException.yml +++ b/api/Vintagestory.API.Common.DummyLoggerException.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DummyLoggerException path: Common/API/ILogger.cs startLine: 272 @@ -65,8 +65,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ILogger.cs startLine: 274 diff --git a/api/Vintagestory.API.Common.DummySlot.yml b/api/Vintagestory.API.Common.DummySlot.yml index c903748e..15dde874 100644 --- a/api/Vintagestory.API.Common.DummySlot.yml +++ b/api/Vintagestory.API.Common.DummySlot.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/DummySlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DummySlot path: Common/Inventory/DummySlot.cs startLine: 5 @@ -88,8 +88,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/DummySlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Inventory/DummySlot.cs startLine: 7 @@ -120,8 +120,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/DummySlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Inventory/DummySlot.cs startLine: 12 @@ -149,8 +149,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/DummySlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Inventory/DummySlot.cs startLine: 16 diff --git a/api/Vintagestory.API.Common.ElementPose.yml b/api/Vintagestory.API.Common.ElementPose.yml index 75c1f9bc..d5a3276a 100644 --- a/api/Vintagestory.API.Common.ElementPose.yml +++ b/api/Vintagestory.API.Common.ElementPose.yml @@ -36,8 +36,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ElementPose.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ElementPose path: Common/Model/Animation/ElementPose.cs startLine: 7 @@ -72,8 +72,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ElementPose.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ForElement path: Common/Model/Animation/ElementPose.cs startLine: 12 @@ -101,8 +101,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ElementPose.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AnimModelMatrix path: Common/Model/Animation/ElementPose.cs startLine: 17 @@ -130,8 +130,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ElementPose.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChildElementPoses path: Common/Model/Animation/ElementPose.cs startLine: 19 @@ -157,8 +157,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ElementPose.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: degOffX path: Common/Model/Animation/ElementPose.cs startLine: 21 @@ -184,8 +184,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ElementPose.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: degOffY path: Common/Model/Animation/ElementPose.cs startLine: 21 @@ -211,8 +211,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ElementPose.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: degOffZ path: Common/Model/Animation/ElementPose.cs startLine: 21 @@ -238,8 +238,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ElementPose.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: degX path: Common/Model/Animation/ElementPose.cs startLine: 23 @@ -265,8 +265,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ElementPose.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: degY path: Common/Model/Animation/ElementPose.cs startLine: 23 @@ -292,8 +292,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ElementPose.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: degZ path: Common/Model/Animation/ElementPose.cs startLine: 23 @@ -319,8 +319,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ElementPose.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: scaleX path: Common/Model/Animation/ElementPose.cs startLine: 24 @@ -346,8 +346,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ElementPose.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: scaleY path: Common/Model/Animation/ElementPose.cs startLine: 24 @@ -373,8 +373,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ElementPose.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: scaleZ path: Common/Model/Animation/ElementPose.cs startLine: 24 @@ -400,8 +400,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ElementPose.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: translateX path: Common/Model/Animation/ElementPose.cs startLine: 25 @@ -427,8 +427,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ElementPose.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: translateY path: Common/Model/Animation/ElementPose.cs startLine: 25 @@ -454,8 +454,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ElementPose.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: translateZ path: Common/Model/Animation/ElementPose.cs startLine: 25 @@ -481,8 +481,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ElementPose.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotShortestDistanceX path: Common/Model/Animation/ElementPose.cs startLine: 27 @@ -508,8 +508,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ElementPose.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotShortestDistanceY path: Common/Model/Animation/ElementPose.cs startLine: 28 @@ -535,8 +535,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ElementPose.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotShortestDistanceZ path: Common/Model/Animation/ElementPose.cs startLine: 29 @@ -562,8 +562,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ElementPose.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clear path: Common/Model/Animation/ElementPose.cs startLine: 31 @@ -588,8 +588,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ElementPose.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Common/Model/Animation/ElementPose.cs startLine: 44 @@ -626,8 +626,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ElementPose.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Common/Model/Animation/ElementPose.cs startLine: 93 diff --git a/api/Vintagestory.API.Common.Entities.BaseSpawnConditions.yml b/api/Vintagestory.API.Common.Entities.BaseSpawnConditions.yml index f8c13694..8906e302 100644 --- a/api/Vintagestory.API.Common.Entities.BaseSpawnConditions.yml +++ b/api/Vintagestory.API.Common.Entities.BaseSpawnConditions.yml @@ -32,8 +32,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BaseSpawnConditions path: Common/Entity/SpawnConditions.cs startLine: 223 @@ -83,8 +83,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Group path: Common/Entity/SpawnConditions.cs startLine: 228 @@ -112,8 +112,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinLightLevel path: Common/Entity/SpawnConditions.cs startLine: 233 @@ -141,8 +141,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxLightLevel path: Common/Entity/SpawnConditions.cs startLine: 238 @@ -170,8 +170,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LightLevelType path: Common/Entity/SpawnConditions.cs startLine: 243 @@ -199,8 +199,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HerdSize path: Common/Entity/SpawnConditions.cs startLine: 248 @@ -228,8 +228,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GroupSize path: Common/Entity/SpawnConditions.cs startLine: 250 @@ -269,8 +269,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Companions path: Common/Entity/SpawnConditions.cs startLine: 256 @@ -298,8 +298,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InsideBlockCodes path: Common/Entity/SpawnConditions.cs startLine: 261 @@ -327,8 +327,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RequireSolidGround path: Common/Entity/SpawnConditions.cs startLine: 266 @@ -356,8 +356,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryOnlySurface path: Common/Entity/SpawnConditions.cs startLine: 271 @@ -385,8 +385,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClimateValueMode path: Common/Entity/SpawnConditions.cs startLine: 276 @@ -414,8 +414,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InsideBlockCodesResolved path: Common/Entity/SpawnConditions.cs startLine: 279 @@ -441,8 +441,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InsideBlockCodesBeginsWith path: Common/Entity/SpawnConditions.cs startLine: 280 @@ -468,8 +468,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InsideBlockCodesExact path: Common/Entity/SpawnConditions.cs startLine: 281 @@ -495,8 +495,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InsideBlockFirstLetters path: Common/Entity/SpawnConditions.cs startLine: 282 @@ -522,8 +522,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanSpawnInside path: Common/Entity/SpawnConditions.cs startLine: 284 @@ -553,8 +553,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Initialise path: Common/Entity/SpawnConditions.cs startLine: 312 diff --git a/api/Vintagestory.API.Common.Entities.ClimateSpawnCondition.yml b/api/Vintagestory.API.Common.Entities.ClimateSpawnCondition.yml index 468b0f94..4a6be594 100644 --- a/api/Vintagestory.API.Common.Entities.ClimateSpawnCondition.yml +++ b/api/Vintagestory.API.Common.Entities.ClimateSpawnCondition.yml @@ -27,8 +27,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClimateSpawnCondition path: Common/Entity/SpawnConditions.cs startLine: 9 @@ -64,8 +64,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinTemp path: Common/Entity/SpawnConditions.cs startLine: 14 @@ -93,8 +93,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxTemp path: Common/Entity/SpawnConditions.cs startLine: 19 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinRain path: Common/Entity/SpawnConditions.cs startLine: 24 @@ -151,8 +151,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxRain path: Common/Entity/SpawnConditions.cs startLine: 29 @@ -180,8 +180,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinForest path: Common/Entity/SpawnConditions.cs startLine: 34 @@ -209,8 +209,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxForest path: Common/Entity/SpawnConditions.cs startLine: 39 @@ -238,8 +238,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinShrubs path: Common/Entity/SpawnConditions.cs startLine: 44 @@ -267,8 +267,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxShrubs path: Common/Entity/SpawnConditions.cs startLine: 49 @@ -296,8 +296,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinY path: Common/Entity/SpawnConditions.cs startLine: 54 @@ -325,8 +325,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxY path: Common/Entity/SpawnConditions.cs startLine: 59 @@ -354,8 +354,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinForestOrShrubs path: Common/Entity/SpawnConditions.cs startLine: 64 @@ -383,8 +383,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetFrom path: Common/Entity/SpawnConditions.cs startLine: 67 diff --git a/api/Vintagestory.API.Common.Entities.Entity.yml b/api/Vintagestory.API.Common.Entities.Entity.yml index 9d6eee9f..cb1e80db 100644 --- a/api/Vintagestory.API.Common.Entities.Entity.yml +++ b/api/Vintagestory.API.Common.Entities.Entity.yml @@ -157,8 +157,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Entity path: Common/Entity/Entity.cs startLine: 24 @@ -221,8 +221,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SplashParticleProps path: Common/Entity/Entity.cs startLine: 26 @@ -248,8 +248,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FireParticleProps path: Common/Entity/Entity.cs startLine: 27 @@ -275,8 +275,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FloatingSedimentParticles path: Common/Entity/Entity.cs startLine: 28 @@ -302,8 +302,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AirBubbleParticleProps path: Common/Entity/Entity.cs startLine: 30 @@ -329,8 +329,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: bioLumiParticles path: Common/Entity/Entity.cs startLine: 31 @@ -356,8 +356,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: bioLumiNoise path: Common/Entity/Entity.cs startLine: 32 @@ -383,8 +383,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnInitialized path: Common/Entity/Entity.cs startLine: 34 @@ -410,8 +410,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: World path: Common/Entity/Entity.cs startLine: 112 @@ -439,8 +439,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Api path: Common/Entity/Entity.cs startLine: 117 @@ -468,8 +468,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsCreature path: Common/Entity/Entity.cs startLine: 124 @@ -504,8 +504,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PhysicsUpdateWatcher path: Common/Entity/Entity.cs startLine: 129 @@ -533,8 +533,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AnimManager path: Common/Entity/Entity.cs startLine: 135 @@ -567,8 +567,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ActivityTimers path: Common/Entity/Entity.cs startLine: 140 @@ -596,8 +596,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pos path: Common/Entity/Entity.cs startLine: 146 @@ -625,8 +625,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ServerPos path: Common/Entity/Entity.cs startLine: 151 @@ -654,8 +654,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreviousServerPos path: Common/Entity/Entity.cs startLine: 156 @@ -683,8 +683,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PositionBeforeFalling path: Common/Entity/Entity.cs startLine: 161 @@ -712,8 +712,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InChunkIndex3d path: Common/Entity/Entity.cs startLine: 163 @@ -739,8 +739,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CollisionBox path: Common/Entity/Entity.cs startLine: 168 @@ -768,8 +768,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OriginCollisionBox path: Common/Entity/Entity.cs startLine: 173 @@ -797,8 +797,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SelectionBox path: Common/Entity/Entity.cs startLine: 179 @@ -826,8 +826,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OriginSelectionBox path: Common/Entity/Entity.cs startLine: 183 @@ -855,8 +855,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Teleporting path: Common/Entity/Entity.cs startLine: 188 @@ -884,8 +884,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsTeleport path: Common/Entity/Entity.cs startLine: 192 @@ -913,8 +913,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityId path: Common/Entity/Entity.cs startLine: 198 @@ -942,8 +942,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SimulationRange path: Common/Entity/Entity.cs startLine: 203 @@ -971,8 +971,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClimbingOnFace path: Common/Entity/Entity.cs startLine: 208 @@ -1000,8 +1000,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClimbingIntoFace path: Common/Entity/Entity.cs startLine: 209 @@ -1027,8 +1027,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClimbingOnCollBox path: Common/Entity/Entity.cs startLine: 214 @@ -1056,8 +1056,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnGround path: Common/Entity/Entity.cs startLine: 219 @@ -1085,8 +1085,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FeetInLiquid path: Common/Entity/Entity.cs startLine: 224 @@ -1114,8 +1114,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsOnFire path: Common/Entity/Entity.cs startLine: 226 @@ -1143,8 +1143,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: resetLightHsv path: Common/Entity/Entity.cs startLine: 237 @@ -1170,8 +1170,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InLava path: Common/Entity/Entity.cs startLine: 239 @@ -1197,8 +1197,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InLavaBeginTotalMs path: Common/Entity/Entity.cs startLine: 240 @@ -1224,8 +1224,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnFireBeginTotalMs path: Common/Entity/Entity.cs startLine: 242 @@ -1251,8 +1251,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Swimming path: Common/Entity/Entity.cs startLine: 247 @@ -1280,8 +1280,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CollidedVertically path: Common/Entity/Entity.cs startLine: 252 @@ -1309,8 +1309,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CollidedHorizontally path: Common/Entity/Entity.cs startLine: 257 @@ -1338,8 +1338,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: State path: Common/Entity/Entity.cs startLine: 262 @@ -1367,8 +1367,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DespawnReason path: Common/Entity/Entity.cs startLine: 264 @@ -1394,8 +1394,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WatchedAttributes path: Common/Entity/Entity.cs startLine: 269 @@ -1423,8 +1423,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DebugAttributes path: Common/Entity/Entity.cs startLine: 274 @@ -1452,8 +1452,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Attributes path: Common/Entity/Entity.cs startLine: 279 @@ -1481,8 +1481,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsRendered path: Common/Entity/Entity.cs startLine: 285 @@ -1510,8 +1510,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsShadowRendered path: Common/Entity/Entity.cs startLine: 290 @@ -1539,8 +1539,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HurtColor path: Common/Entity/Entity.cs startLine: 295 @@ -1568,8 +1568,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Stats path: Common/Entity/Entity.cs startLine: 297 @@ -1595,8 +1595,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: touchDistanceSq path: Common/Entity/Entity.cs startLine: 302 @@ -1622,8 +1622,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ownPosRepulse path: Common/Entity/Entity.cs startLine: 303 @@ -1649,8 +1649,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: hasRepulseBehavior path: Common/Entity/Entity.cs startLine: 304 @@ -1676,8 +1676,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: packet path: Common/Entity/Entity.cs startLine: 309 @@ -1705,8 +1705,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Properties path: Common/Entity/Entity.cs startLine: 319 @@ -1734,8 +1734,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SidedProperties path: Common/Entity/Entity.cs startLine: 321 @@ -1763,8 +1763,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsInteractable path: Common/Entity/Entity.cs startLine: 335 @@ -1794,8 +1794,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SwimmingOffsetY path: Common/Entity/Entity.cs startLine: 344 @@ -1825,8 +1825,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Collided path: Common/Entity/Entity.cs startLine: 353 @@ -1856,8 +1856,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SidedPos path: Common/Entity/Entity.cs startLine: 358 @@ -1887,8 +1887,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LocalEyePos path: Common/Entity/Entity.cs startLine: 366 @@ -1918,8 +1918,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ApplyGravity path: Common/Entity/Entity.cs startLine: 372 @@ -1949,8 +1949,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaterialDensity path: Common/Entity/Entity.cs startLine: 382 @@ -1983,8 +1983,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LightHsv path: Common/Entity/Entity.cs startLine: 390 @@ -2014,8 +2014,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldDespawn path: Common/Entity/Entity.cs startLine: 396 @@ -2045,8 +2045,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StoreWithChunk path: Common/Entity/Entity.cs startLine: 404 @@ -2076,8 +2076,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AlwaysActive path: Common/Entity/Entity.cs startLine: 409 @@ -2107,8 +2107,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Alive path: Common/Entity/Entity.cs startLine: 414 @@ -2138,8 +2138,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: alive path: Common/Entity/Entity.cs startLine: 422 @@ -2165,8 +2165,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: minRangeToClient path: Common/Entity/Entity.cs startLine: 423 @@ -2192,8 +2192,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IdleSoundChanceModifier path: Common/Entity/Entity.cs startLine: 425 @@ -2221,8 +2221,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderColor path: Common/Entity/Entity.cs startLine: 434 @@ -2252,8 +2252,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LadderFixDelta path: Common/Entity/Entity.cs startLine: 447 @@ -2283,8 +2283,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Entity/Entity.cs startLine: 455 @@ -2314,8 +2314,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Entity/Entity.cs startLine: 468 @@ -2349,8 +2349,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnHurt path: Common/Entity/Entity.cs startLine: 479 @@ -2387,8 +2387,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Initialize path: Common/Entity/Entity.cs startLine: 491 @@ -2428,8 +2428,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AfterInitialized path: Common/Entity/Entity.cs startLine: 575 @@ -2460,8 +2460,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TriggerOnInitialized path: Common/Entity/Entity.cs startLine: 583 @@ -2486,8 +2486,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DoInitialActiveCheck path: Common/Entity/Entity.cs startLine: 588 @@ -2515,8 +2515,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: updateColSelBoxes path: Common/Entity/Entity.cs startLine: 613 @@ -2541,8 +2541,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: updateOnFire path: Common/Entity/Entity.cs startLine: 636 @@ -2567,8 +2567,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryGiveItemStack path: Common/Entity/Entity.cs startLine: 661 @@ -2602,8 +2602,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDrops path: Common/Entity/Entity.cs startLine: 676 @@ -2643,8 +2643,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TeleportToDouble path: Common/Entity/Entity.cs startLine: 734 @@ -2687,8 +2687,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TeleportTo path: Common/Entity/Entity.cs startLine: 762 @@ -2728,8 +2728,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TeleportTo path: Common/Entity/Entity.cs startLine: 771 @@ -2760,8 +2760,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TeleportTo path: Common/Entity/Entity.cs startLine: 780 @@ -2792,8 +2792,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TeleportTo path: Common/Entity/Entity.cs startLine: 790 @@ -2827,8 +2827,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReceiveDamage path: Common/Entity/Entity.cs startLine: 810 @@ -2868,8 +2868,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldReceiveDamage path: Common/Entity/Entity.cs startLine: 861 @@ -2909,8 +2909,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnGameTick path: Common/Entity/Entity.cs startLine: 871 @@ -2944,8 +2944,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ApplyFireDamage path: Common/Entity/Entity.cs startLine: 980 @@ -2976,8 +2976,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DieInLava path: Common/Entity/Entity.cs startLine: 990 @@ -3002,8 +3002,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnAsyncParticleTick path: Common/Entity/Entity.cs startLine: 1006 @@ -3036,8 +3036,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Ignite path: Common/Entity/Entity.cs startLine: 1012 @@ -3062,8 +3062,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnTesselation path: Common/Entity/Entity.cs startLine: 1025 @@ -3100,8 +3100,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnFallToGround path: Common/Entity/Entity.cs startLine: 1045 @@ -3135,8 +3135,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnCollided path: Common/Entity/Entity.cs startLine: 1056 @@ -3163,8 +3163,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnCollideWithLiquid path: Common/Entity/Entity.cs startLine: 1064 @@ -3191,8 +3191,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SpawnWaterMovementParticles path: Common/Entity/Entity.cs startLine: 1105 @@ -3229,8 +3229,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnEntityLoaded path: Common/Entity/Entity.cs startLine: 1143 @@ -3257,8 +3257,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnEntitySpawn path: Common/Entity/Entity.cs startLine: 1156 @@ -3285,8 +3285,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnEntityDespawn path: Common/Entity/Entity.cs startLine: 1170 @@ -3317,8 +3317,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnExitedLiquid path: Common/Entity/Entity.cs startLine: 1187 @@ -3345,8 +3345,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnInteract path: Common/Entity/Entity.cs startLine: 1199 @@ -3386,8 +3386,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetInteractionHelp path: Common/Entity/Entity.cs startLine: 1217 @@ -3427,8 +3427,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnReceivedServerPos path: Common/Entity/Entity.cs startLine: 1238 @@ -3461,8 +3461,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnReceivedClientPacket path: Common/Entity/Entity.cs startLine: 1260 @@ -3502,8 +3502,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnReceivedServerPacket path: Common/Entity/Entity.cs startLine: 1278 @@ -3545,8 +3545,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnReceivedServerAnimations path: Common/Entity/Entity.cs startLine: 1299 @@ -3581,8 +3581,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnCollected path: Common/Entity/Entity.cs startLine: 1309 @@ -3616,8 +3616,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnStateChanged path: Common/Entity/Entity.cs startLine: 1318 @@ -3648,8 +3648,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetCollisionBox path: Common/Entity/Entity.cs startLine: 1337 @@ -3686,8 +3686,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetSelectionBox path: Common/Entity/Entity.cs startLine: 1350 @@ -3720,8 +3720,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddBehavior path: Common/Entity/Entity.cs startLine: 1367 @@ -3752,8 +3752,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveBehavior path: Common/Entity/Entity.cs startLine: 1377 @@ -3784,8 +3784,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HasBehavior path: Common/Entity/Entity.cs startLine: 1387 @@ -3822,8 +3822,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HasBehavior path: Common/Entity/Entity.cs startLine: 1397 @@ -3855,8 +3855,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBehavior path: Common/Entity/Entity.cs startLine: 1412 @@ -3893,8 +3893,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBehavior path: Common/Entity/Entity.cs startLine: 1421 @@ -3929,8 +3929,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsActivityRunning path: Common/Entity/Entity.cs startLine: 1432 @@ -3967,8 +3967,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemainingActivityTime path: Common/Entity/Entity.cs startLine: 1444 @@ -4005,8 +4005,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetActivityRunning path: Common/Entity/Entity.cs startLine: 1456 @@ -4043,8 +4043,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UpdateDebugAttributes path: Common/Entity/Entity.cs startLine: 1465 @@ -4071,8 +4071,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Entity/Entity.cs startLine: 1505 @@ -4112,8 +4112,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Entity/Entity.cs startLine: 1517 @@ -4150,8 +4150,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Common/Entity/Entity.cs startLine: 1609 @@ -4188,8 +4188,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetHeadPositionToWatchedAttributes path: Common/Entity/Entity.cs startLine: 1664 @@ -4216,8 +4216,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHeadPositionFromWatchedAttributes path: Common/Entity/Entity.cs startLine: 1671 @@ -4244,8 +4244,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Revive path: Common/Entity/Entity.cs startLine: 1682 @@ -4272,8 +4272,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Die path: Common/Entity/Entity.cs startLine: 1699 @@ -4305,8 +4305,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayEntitySound path: Common/Entity/Entity.cs startLine: 1758 @@ -4349,8 +4349,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanCollect path: Common/Entity/Entity.cs startLine: 1779 @@ -4384,8 +4384,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Notify path: Common/Entity/Entity.cs startLine: 1792 @@ -4422,8 +4422,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WillExport path: Common/Entity/Entity.cs startLine: 1808 @@ -4461,8 +4461,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DidImportOrExport path: Common/Entity/Entity.cs startLine: 1829 @@ -4498,8 +4498,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnStoreCollectibleMappings path: Common/Entity/Entity.cs startLine: 1851 @@ -4536,8 +4536,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnLoadCollectibleMappings path: Common/Entity/Entity.cs startLine: 1868 @@ -4597,8 +4597,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnLoadCollectibleMappings path: Common/Entity/Entity.cs startLine: 1884 @@ -4649,8 +4649,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetName path: Common/Entity/Entity.cs startLine: 1896 @@ -4680,8 +4680,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetInfoText path: Common/Entity/Entity.cs startLine: 1910 @@ -4711,8 +4711,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartAnimation path: Common/Entity/Entity.cs startLine: 1961 @@ -4746,8 +4746,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StopAnimation path: Common/Entity/Entity.cs startLine: 1970 diff --git a/api/Vintagestory.API.Common.Entities.EntityBehavior.yml b/api/Vintagestory.API.Common.Entities.EntityBehavior.yml index 3b5d019c..e6e6d579 100644 --- a/api/Vintagestory.API.Common.Entities.EntityBehavior.yml +++ b/api/Vintagestory.API.Common.Entities.EntityBehavior.yml @@ -47,8 +47,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityBehavior path: Common/Entity/EntityBehavior.cs startLine: 13 @@ -87,8 +87,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: entity path: Common/Entity/EntityBehavior.cs startLine: 15 @@ -114,8 +114,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ProfilerName path: Common/Entity/EntityBehavior.cs startLine: 17 @@ -143,8 +143,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Entity/EntityBehavior.cs startLine: 19 @@ -175,8 +175,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Initialize path: Common/Entity/EntityBehavior.cs startLine: 31 @@ -213,8 +213,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AfterInitialized path: Common/Entity/EntityBehavior.cs startLine: 38 @@ -247,8 +247,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnGameTick path: Common/Entity/EntityBehavior.cs startLine: 46 @@ -282,8 +282,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnEntitySpawn path: Common/Entity/EntityBehavior.cs startLine: 51 @@ -310,8 +310,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnEntityLoaded path: Common/Entity/EntityBehavior.cs startLine: 56 @@ -338,8 +338,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnEntityDespawn path: Common/Entity/EntityBehavior.cs startLine: 62 @@ -370,8 +370,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PropertyName path: Common/Entity/EntityBehavior.cs startLine: 68 @@ -401,8 +401,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnEntityReceiveDamage path: Common/Entity/EntityBehavior.cs startLine: 75 @@ -439,8 +439,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnEntityRevive path: Common/Entity/EntityBehavior.cs startLine: 83 @@ -467,8 +467,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnFallToGround path: Common/Entity/EntityBehavior.cs startLine: 93 @@ -505,8 +505,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnEntityReceiveSaturation path: Common/Entity/EntityBehavior.cs startLine: 104 @@ -549,8 +549,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnReceivedServerPos path: Common/Entity/EntityBehavior.cs startLine: 114 @@ -587,8 +587,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDrops path: Common/Entity/EntityBehavior.cs startLine: 127 @@ -634,8 +634,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnStateChanged path: Common/Entity/EntityBehavior.cs startLine: 139 @@ -672,8 +672,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Notify path: Common/Entity/EntityBehavior.cs startLine: 149 @@ -710,8 +710,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetInfoText path: Common/Entity/EntityBehavior.cs startLine: 158 @@ -742,8 +742,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnEntityDeath path: Common/Entity/EntityBehavior.cs startLine: 167 @@ -774,8 +774,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnInteract path: Common/Entity/EntityBehavior.cs startLine: 180 @@ -821,8 +821,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnReceivedClientPacket path: Common/Entity/EntityBehavior.cs startLine: 192 @@ -865,8 +865,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnReceivedServerPacket path: Common/Entity/EntityBehavior.cs startLine: 203 @@ -906,8 +906,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnNoPath path: Common/Entity/EntityBehavior.cs startLine: 212 @@ -938,8 +938,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetInteractionHelp path: Common/Entity/EntityBehavior.cs startLine: 224 @@ -984,8 +984,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DidAttack path: Common/Entity/EntityBehavior.cs startLine: 230 @@ -1020,8 +1020,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnStoreCollectibleMappings path: Common/Entity/EntityBehavior.cs startLine: 235 @@ -1054,8 +1054,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnLoadCollectibleMappings path: Common/Entity/EntityBehavior.cs startLine: 240 @@ -1102,8 +1102,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnLoadCollectibleMappings path: Common/Entity/EntityBehavior.cs startLine: 246 @@ -1140,8 +1140,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Common/Entity/EntityBehavior.cs startLine: 251 @@ -1172,8 +1172,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Entity/EntityBehavior.cs startLine: 260 @@ -1207,8 +1207,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TestCommand path: Common/Entity/EntityBehavior.cs startLine: 269 diff --git a/api/Vintagestory.API.Common.Entities.EntityClientProperties.yml b/api/Vintagestory.API.Common.Entities.EntityClientProperties.yml index 899503a3..f009a812 100644 --- a/api/Vintagestory.API.Common.Entities.EntityClientProperties.yml +++ b/api/Vintagestory.API.Common.Entities.EntityClientProperties.yml @@ -36,8 +36,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityClientProperties path: Common/Entity/EntityProperties.cs startLine: 378 @@ -76,8 +76,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Entity/EntityProperties.cs startLine: 381 @@ -108,8 +108,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Renderer path: Common/Entity/EntityProperties.cs startLine: 386 @@ -137,8 +137,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RendererName path: Common/Entity/EntityProperties.cs startLine: 391 @@ -166,8 +166,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Textures path: Common/Entity/EntityProperties.cs startLine: 396 @@ -195,8 +195,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Texture path: Common/Entity/EntityProperties.cs startLine: 401 @@ -226,8 +226,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GlowLevel path: Common/Entity/EntityProperties.cs startLine: 409 @@ -255,8 +255,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PitchStep path: Common/Entity/EntityProperties.cs startLine: 414 @@ -284,8 +284,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Shape path: Common/Entity/EntityProperties.cs startLine: 419 @@ -313,8 +313,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadedShape path: Common/Entity/EntityProperties.cs startLine: 426 @@ -347,8 +347,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadedAlternateShapes path: Common/Entity/EntityProperties.cs startLine: 428 @@ -374,8 +374,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadedShapeForEntity path: Common/Entity/EntityProperties.cs startLine: 433 @@ -403,8 +403,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShapeForEntity path: Common/Entity/EntityProperties.cs startLine: 434 @@ -430,8 +430,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Size path: Common/Entity/EntityProperties.cs startLine: 439 @@ -459,8 +459,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SizeGrowthFactor path: Common/Entity/EntityProperties.cs startLine: 444 @@ -488,8 +488,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Animations path: Common/Entity/EntityProperties.cs startLine: 449 @@ -517,8 +517,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AnimationsByMetaCode path: Common/Entity/EntityProperties.cs startLine: 451 @@ -544,8 +544,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AnimationsByCrc32 path: Common/Entity/EntityProperties.cs startLine: 452 @@ -571,8 +571,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FirstTexture path: Common/Entity/EntityProperties.cs startLine: 457 @@ -602,8 +602,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DetermineLoadedShape path: Common/Entity/EntityProperties.cs startLine: 460 @@ -634,8 +634,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Init path: Common/Entity/EntityProperties.cs startLine: 488 @@ -669,8 +669,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Entity/EntityProperties.cs startLine: 521 diff --git a/api/Vintagestory.API.Common.Entities.EntityDespawnData.yml b/api/Vintagestory.API.Common.Entities.EntityDespawnData.yml index f7c23805..dce87470 100644 --- a/api/Vintagestory.API.Common.Entities.EntityDespawnData.yml +++ b/api/Vintagestory.API.Common.Entities.EntityDespawnData.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityDespawn.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityDespawnData path: Common/Entity/EntityDespawn.cs startLine: 2 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityDespawn.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Reason path: Common/Entity/EntityDespawn.cs startLine: 7 @@ -81,8 +81,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityDespawn.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DamageSourceForDeath path: Common/Entity/EntityDespawn.cs startLine: 12 diff --git a/api/Vintagestory.API.Common.Entities.EntityPos.yml b/api/Vintagestory.API.Common.Entities.EntityPos.yml index b6c67f0f..eb74199e 100644 --- a/api/Vintagestory.API.Common.Entities.EntityPos.yml +++ b/api/Vintagestory.API.Common.Entities.EntityPos.yml @@ -81,8 +81,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityPos path: Common/Entity/EntityPos.cs startLine: 21 @@ -120,8 +120,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: x path: Common/Entity/EntityPos.cs startLine: 23 @@ -147,8 +147,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: y path: Common/Entity/EntityPos.cs startLine: 24 @@ -174,8 +174,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: z path: Common/Entity/EntityPos.cs startLine: 25 @@ -201,8 +201,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: dimension path: Common/Entity/EntityPos.cs startLine: 26 @@ -228,8 +228,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: roll path: Common/Entity/EntityPos.cs startLine: 27 @@ -255,8 +255,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: yaw path: Common/Entity/EntityPos.cs startLine: 28 @@ -282,8 +282,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: pitch path: Common/Entity/EntityPos.cs startLine: 29 @@ -309,8 +309,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: stance path: Common/Entity/EntityPos.cs startLine: 30 @@ -336,8 +336,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HeadYaw path: Common/Entity/EntityPos.cs startLine: 34 @@ -365,8 +365,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HeadPitch path: Common/Entity/EntityPos.cs startLine: 41 @@ -394,8 +394,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Motion path: Common/Entity/EntityPos.cs startLine: 44 @@ -421,8 +421,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X path: Common/Entity/EntityPos.cs startLine: 49 @@ -452,8 +452,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y path: Common/Entity/EntityPos.cs startLine: 57 @@ -483,8 +483,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InternalY path: Common/Entity/EntityPos.cs startLine: 63 @@ -512,8 +512,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Z path: Common/Entity/EntityPos.cs startLine: 71 @@ -543,8 +543,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Roll path: Common/Entity/EntityPos.cs startLine: 80 @@ -574,8 +574,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Yaw path: Common/Entity/EntityPos.cs startLine: 89 @@ -605,8 +605,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pitch path: Common/Entity/EntityPos.cs startLine: 98 @@ -636,8 +636,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dimension path: Common/Entity/EntityPos.cs startLine: 104 @@ -663,8 +663,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AsBlockPos path: Common/Entity/EntityPos.cs startLine: 111 @@ -694,8 +694,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XYZInt path: Common/Entity/EntityPos.cs startLine: 119 @@ -725,8 +725,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XYZ path: Common/Entity/EntityPos.cs startLine: 127 @@ -756,8 +756,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XYZFloat path: Common/Entity/EntityPos.cs startLine: 135 @@ -787,8 +787,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetPos path: Common/Entity/EntityPos.cs startLine: 157 @@ -819,8 +819,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Entity/EntityPos.cs startLine: 168 @@ -848,8 +848,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Entity/EntityPos.cs startLine: 173 @@ -890,8 +890,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Common/Entity/EntityPos.cs startLine: 183 @@ -928,8 +928,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetPos path: Common/Entity/EntityPos.cs startLine: 194 @@ -968,8 +968,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetPos path: Common/Entity/EntityPos.cs startLine: 204 @@ -1001,8 +1001,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetPos path: Common/Entity/EntityPos.cs startLine: 215 @@ -1041,8 +1041,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetPos path: Common/Entity/EntityPos.cs startLine: 226 @@ -1074,8 +1074,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetAngles path: Common/Entity/EntityPos.cs startLine: 239 @@ -1109,8 +1109,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetAngles path: Common/Entity/EntityPos.cs startLine: 252 @@ -1149,8 +1149,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetYaw path: Common/Entity/EntityPos.cs startLine: 265 @@ -1187,8 +1187,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InRangeOf path: Common/Entity/EntityPos.cs startLine: 280 @@ -1228,8 +1228,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InRangeOf path: Common/Entity/EntityPos.cs startLine: 297 @@ -1275,8 +1275,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InHorizontalRangeOf path: Common/Entity/EntityPos.cs startLine: 313 @@ -1319,8 +1319,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InRangeOf path: Common/Entity/EntityPos.cs startLine: 329 @@ -1366,8 +1366,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InRangeOf path: Common/Entity/EntityPos.cs startLine: 344 @@ -1407,8 +1407,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InRangeOf path: Common/Entity/EntityPos.cs startLine: 359 @@ -1448,8 +1448,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InRangeOf path: Common/Entity/EntityPos.cs startLine: 375 @@ -1492,8 +1492,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SquareDistanceTo path: Common/Entity/EntityPos.cs startLine: 392 @@ -1536,8 +1536,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SquareDistanceTo path: Common/Entity/EntityPos.cs startLine: 408 @@ -1580,8 +1580,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SquareDistanceTo path: Common/Entity/EntityPos.cs startLine: 422 @@ -1615,8 +1615,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SquareHorDistanceTo path: Common/Entity/EntityPos.cs startLine: 436 @@ -1650,8 +1650,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DistanceTo path: Common/Entity/EntityPos.cs startLine: 444 @@ -1681,8 +1681,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DistanceTo path: Common/Entity/EntityPos.cs startLine: 453 @@ -1712,8 +1712,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HorDistanceTo path: Common/Entity/EntityPos.cs startLine: 462 @@ -1743,8 +1743,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HorDistanceTo path: Common/Entity/EntityPos.cs startLine: 470 @@ -1774,8 +1774,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SquareDistanceTo path: Common/Entity/EntityPos.cs startLine: 484 @@ -1809,8 +1809,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Copy path: Common/Entity/EntityPos.cs startLine: 497 @@ -1840,8 +1840,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetViewVector path: Common/Entity/EntityPos.cs startLine: 519 @@ -1871,8 +1871,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetViewVector path: Common/Entity/EntityPos.cs startLine: 529 @@ -1910,8 +1910,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AheadCopy path: Common/Entity/EntityPos.cs startLine: 545 @@ -1948,8 +1948,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HorizontalAheadCopy path: Common/Entity/EntityPos.cs startLine: 561 @@ -1986,8 +1986,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BehindCopy path: Common/Entity/EntityPos.cs startLine: 574 @@ -2024,8 +2024,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BasicallySameAs path: Common/Entity/EntityPos.cs startLine: 589 @@ -2065,8 +2065,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BasicallySameAsIgnoreMotion path: Common/Entity/EntityPos.cs startLine: 608 @@ -2106,8 +2106,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BasicallySameAsIgnoreAngles path: Common/Entity/EntityPos.cs startLine: 627 @@ -2147,8 +2147,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetFrom path: Common/Entity/EntityPos.cs startLine: 641 @@ -2179,8 +2179,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetFrom path: Common/Entity/EntityPos.cs startLine: 661 @@ -2211,8 +2211,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Common/Entity/EntityPos.cs startLine: 669 @@ -2243,8 +2243,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnlyPosToString path: Common/Entity/EntityPos.cs startLine: 674 @@ -2271,8 +2271,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnlyAnglesToString path: Common/Entity/EntityPos.cs startLine: 680 @@ -2299,8 +2299,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Common/Entity/EntityPos.cs startLine: 689 @@ -2331,8 +2331,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Entity/EntityPos.cs startLine: 707 diff --git a/api/Vintagestory.API.Common.Entities.EntityProperties.yml b/api/Vintagestory.API.Common.Entities.EntityProperties.yml index 80f57291..8ad4fabf 100644 --- a/api/Vintagestory.API.Common.Entities.EntityProperties.yml +++ b/api/Vintagestory.API.Common.Entities.EntityProperties.yml @@ -48,8 +48,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityProperties path: Common/Entity/EntityProperties.cs startLine: 10 @@ -83,8 +83,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Id path: Common/Entity/EntityProperties.cs startLine: 15 @@ -112,8 +112,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Color path: Common/Entity/EntityProperties.cs startLine: 17 @@ -139,8 +139,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Common/Entity/EntityProperties.cs startLine: 22 @@ -168,8 +168,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Variant path: Common/Entity/EntityProperties.cs startLine: 27 @@ -197,8 +197,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Class path: Common/Entity/EntityProperties.cs startLine: 32 @@ -226,8 +226,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Habitat path: Common/Entity/EntityProperties.cs startLine: 37 @@ -255,8 +255,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CollisionBoxSize path: Common/Entity/EntityProperties.cs startLine: 42 @@ -284,8 +284,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DeadCollisionBoxSize path: Common/Entity/EntityProperties.cs startLine: 47 @@ -313,8 +313,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SelectionBoxSize path: Common/Entity/EntityProperties.cs startLine: 52 @@ -342,8 +342,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DeadSelectionBoxSize path: Common/Entity/EntityProperties.cs startLine: 57 @@ -371,8 +371,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EyeHeight path: Common/Entity/EntityProperties.cs startLine: 62 @@ -400,8 +400,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SwimmingEyeHeight path: Common/Entity/EntityProperties.cs startLine: 64 @@ -427,8 +427,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Weight path: Common/Entity/EntityProperties.cs startLine: 70 @@ -456,8 +456,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanClimb path: Common/Entity/EntityProperties.cs startLine: 75 @@ -485,8 +485,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanClimbAnywhere path: Common/Entity/EntityProperties.cs startLine: 80 @@ -514,8 +514,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FallDamage path: Common/Entity/EntityProperties.cs startLine: 85 @@ -543,8 +543,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FallDamageMultiplier path: Common/Entity/EntityProperties.cs startLine: 90 @@ -572,8 +572,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClimbTouchDistance path: Common/Entity/EntityProperties.cs startLine: 92 @@ -599,8 +599,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotateModelOnClimb path: Common/Entity/EntityProperties.cs startLine: 97 @@ -628,8 +628,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: KnockbackResistance path: Common/Entity/EntityProperties.cs startLine: 102 @@ -657,8 +657,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Attributes path: Common/Entity/EntityProperties.cs startLine: 108 @@ -689,8 +689,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Client path: Common/Entity/EntityProperties.cs startLine: 113 @@ -718,8 +718,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Server path: Common/Entity/EntityProperties.cs startLine: 118 @@ -747,8 +747,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sounds path: Common/Entity/EntityProperties.cs startLine: 123 @@ -776,8 +776,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ResolvedSounds path: Common/Entity/EntityProperties.cs startLine: 128 @@ -805,8 +805,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IdleSoundChance path: Common/Entity/EntityProperties.cs startLine: 133 @@ -834,8 +834,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IdleSoundRange path: Common/Entity/EntityProperties.cs startLine: 138 @@ -863,8 +863,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drops path: Common/Entity/EntityProperties.cs startLine: 143 @@ -892,8 +892,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DropsPacket path: Common/Entity/EntityProperties.cs startLine: 144 @@ -919,8 +919,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SpawnCollisionBox path: Common/Entity/EntityProperties.cs startLine: 149 @@ -950,8 +950,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Entity/EntityProperties.cs startLine: 168 @@ -981,8 +981,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Initialize path: Common/Entity/EntityProperties.cs startLine: 238 @@ -1016,8 +1016,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InitSounds path: Common/Entity/EntityProperties.cs startLine: 263 diff --git a/api/Vintagestory.API.Common.Entities.EntityRenderer.yml b/api/Vintagestory.API.Common.Entities.EntityRenderer.yml index 454abbed..b40463b5 100644 --- a/api/Vintagestory.API.Common.Entities.EntityRenderer.yml +++ b/api/Vintagestory.API.Common.Entities.EntityRenderer.yml @@ -28,8 +28,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityRenderer path: Common/Entity/EntityRenderer.cs startLine: 7 @@ -65,8 +65,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: entity path: Common/Entity/EntityRenderer.cs startLine: 12 @@ -94,8 +94,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: capi path: Common/Entity/EntityRenderer.cs startLine: 16 @@ -123,8 +123,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Entity/EntityRenderer.cs startLine: 24 @@ -161,8 +161,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnEntityLoaded path: Common/Entity/EntityRenderer.cs startLine: 33 @@ -189,8 +189,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DoRender3DOpaque path: Common/Entity/EntityRenderer.cs startLine: 44 @@ -227,8 +227,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DoRender3DOpaqueBatched path: Common/Entity/EntityRenderer.cs startLine: 52 @@ -268,8 +268,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DoRender3DAfterOIT path: Common/Entity/EntityRenderer.cs startLine: 55 @@ -302,8 +302,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DoRender2D path: Common/Entity/EntityRenderer.cs startLine: 61 @@ -337,8 +337,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderToGui path: Common/Entity/EntityRenderer.cs startLine: 72 @@ -387,8 +387,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeforeRender path: Common/Entity/EntityRenderer.cs startLine: 80 @@ -422,8 +422,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Common/Entity/EntityRenderer.cs startLine: 90 @@ -450,8 +450,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DoRender3DOIT path: Common/Entity/EntityRenderer.cs startLine: 97 @@ -485,8 +485,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityRenderer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DoRender3DOITBatched path: Common/Entity/EntityRenderer.cs startLine: 106 diff --git a/api/Vintagestory.API.Common.Entities.EntityServerProperties.yml b/api/Vintagestory.API.Common.Entities.EntityServerProperties.yml index aab33d67..53935b75 100644 --- a/api/Vintagestory.API.Common.Entities.EntityServerProperties.yml +++ b/api/Vintagestory.API.Common.Entities.EntityServerProperties.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityServerProperties path: Common/Entity/EntityProperties.cs startLine: 568 @@ -58,8 +58,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Entity/EntityProperties.cs startLine: 570 @@ -90,8 +90,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SpawnConditions path: Common/Entity/EntityProperties.cs startLine: 575 @@ -119,8 +119,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Entity/EntityProperties.cs startLine: 581 diff --git a/api/Vintagestory.API.Common.Entities.EntitySidedProperties.yml b/api/Vintagestory.API.Common.Entities.EntitySidedProperties.yml index 639627fa..8c94804d 100644 --- a/api/Vintagestory.API.Common.Entities.EntitySidedProperties.yml +++ b/api/Vintagestory.API.Common.Entities.EntitySidedProperties.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntitySidedProperties path: Common/Entity/EntityProperties.cs startLine: 310 @@ -59,8 +59,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Attributes path: Common/Entity/EntityProperties.cs startLine: 315 @@ -88,8 +88,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BehaviorsAsJsonObj path: Common/Entity/EntityProperties.cs startLine: 320 @@ -117,8 +117,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Behaviors path: Common/Entity/EntityProperties.cs startLine: 325 @@ -146,8 +146,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Entity/EntityProperties.cs startLine: 329 @@ -178,8 +178,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: loadBehaviors path: Common/Entity/EntityProperties.cs startLine: 347 @@ -211,8 +211,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Entity/EntityProperties.cs startLine: 374 diff --git a/api/Vintagestory.API.Common.Entities.EnumEntityActivity.yml b/api/Vintagestory.API.Common.Entities.EnumEntityActivity.yml index 6dba10df..20280375 100644 --- a/api/Vintagestory.API.Common.Entities.EnumEntityActivity.yml +++ b/api/Vintagestory.API.Common.Entities.EnumEntityActivity.yml @@ -31,8 +31,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EnumEntityActivity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumEntityActivity path: Common/Entity/EnumEntityActivity.cs startLine: 4 @@ -66,8 +66,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EnumEntityActivity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: None path: Common/Entity/EnumEntityActivity.cs startLine: 7 @@ -92,8 +92,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EnumEntityActivity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Idle path: Common/Entity/EnumEntityActivity.cs startLine: 8 @@ -118,8 +118,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EnumEntityActivity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Move path: Common/Entity/EnumEntityActivity.cs startLine: 9 @@ -144,8 +144,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EnumEntityActivity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SprintMode path: Common/Entity/EnumEntityActivity.cs startLine: 10 @@ -170,8 +170,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EnumEntityActivity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SneakMode path: Common/Entity/EnumEntityActivity.cs startLine: 11 @@ -196,8 +196,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EnumEntityActivity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Fly path: Common/Entity/EnumEntityActivity.cs startLine: 12 @@ -222,8 +222,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EnumEntityActivity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Swim path: Common/Entity/EnumEntityActivity.cs startLine: 13 @@ -248,8 +248,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EnumEntityActivity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Jump path: Common/Entity/EnumEntityActivity.cs startLine: 14 @@ -274,8 +274,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EnumEntityActivity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Fall path: Common/Entity/EnumEntityActivity.cs startLine: 15 @@ -300,8 +300,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EnumEntityActivity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Climb path: Common/Entity/EnumEntityActivity.cs startLine: 16 @@ -326,8 +326,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EnumEntityActivity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FloorSitting path: Common/Entity/EnumEntityActivity.cs startLine: 17 @@ -352,8 +352,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EnumEntityActivity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dead path: Common/Entity/EnumEntityActivity.cs startLine: 18 @@ -378,8 +378,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EnumEntityActivity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Break path: Common/Entity/EnumEntityActivity.cs startLine: 19 @@ -404,8 +404,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EnumEntityActivity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Place path: Common/Entity/EnumEntityActivity.cs startLine: 20 @@ -430,8 +430,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EnumEntityActivity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Glide path: Common/Entity/EnumEntityActivity.cs startLine: 21 @@ -456,8 +456,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EnumEntityActivity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mounted path: Common/Entity/EnumEntityActivity.cs startLine: 22 diff --git a/api/Vintagestory.API.Common.Entities.FuzzyEntityPos.yml b/api/Vintagestory.API.Common.Entities.FuzzyEntityPos.yml index a6660602..cebe4f10 100644 --- a/api/Vintagestory.API.Common.Entities.FuzzyEntityPos.yml +++ b/api/Vintagestory.API.Common.Entities.FuzzyEntityPos.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FuzzyEntityPos path: Common/Entity/EntityPos.cs startLine: 7 @@ -117,8 +117,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Radius path: Common/Entity/EntityPos.cs startLine: 9 @@ -144,8 +144,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UsesLeft path: Common/Entity/EntityPos.cs startLine: 10 @@ -171,8 +171,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Entity/EntityPos.cs startLine: 12 diff --git a/api/Vintagestory.API.Common.Entities.PhysicsTickDelegate.yml b/api/Vintagestory.API.Common.Entities.PhysicsTickDelegate.yml index c1956ee1..f3b8c7e6 100644 --- a/api/Vintagestory.API.Common.Entities.PhysicsTickDelegate.yml +++ b/api/Vintagestory.API.Common.Entities.PhysicsTickDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Entity.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PhysicsTickDelegate path: Common/Entity/Entity.cs startLine: 19 diff --git a/api/Vintagestory.API.Common.Entities.QuantityByGroup.yml b/api/Vintagestory.API.Common.Entities.QuantityByGroup.yml index 2552676c..9e4278c6 100644 --- a/api/Vintagestory.API.Common.Entities.QuantityByGroup.yml +++ b/api/Vintagestory.API.Common.Entities.QuantityByGroup.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: QuantityByGroup path: Common/Entity/SpawnConditions.cs startLine: 124 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxQuantity path: Common/Entity/SpawnConditions.cs startLine: 126 @@ -79,8 +79,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Common/Entity/SpawnConditions.cs startLine: 127 diff --git a/api/Vintagestory.API.Common.Entities.RuntimeSpawnConditions.yml b/api/Vintagestory.API.Common.Entities.RuntimeSpawnConditions.yml index 947335bc..c3f9886f 100644 --- a/api/Vintagestory.API.Common.Entities.RuntimeSpawnConditions.yml +++ b/api/Vintagestory.API.Common.Entities.RuntimeSpawnConditions.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RuntimeSpawnConditions path: Common/Entity/SpawnConditions.cs startLine: 130 @@ -87,8 +87,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Chance path: Common/Entity/SpawnConditions.cs startLine: 135 @@ -116,8 +116,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxQuantity path: Common/Entity/SpawnConditions.cs startLine: 140 @@ -145,8 +145,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxQuantityByGroup path: Common/Entity/SpawnConditions.cs startLine: 142 @@ -172,8 +172,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SpawnCapPlayerScaling path: Common/Entity/SpawnConditions.cs startLine: 144 @@ -199,8 +199,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinDistanceToPlayer path: Common/Entity/SpawnConditions.cs startLine: 149 @@ -228,8 +228,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Entity/SpawnConditions.cs startLine: 155 diff --git a/api/Vintagestory.API.Common.Entities.SpawnConditions.yml b/api/Vintagestory.API.Common.Entities.SpawnConditions.yml index 2c3e50fc..9206552e 100644 --- a/api/Vintagestory.API.Common.Entities.SpawnConditions.yml +++ b/api/Vintagestory.API.Common.Entities.SpawnConditions.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SpawnConditions path: Common/Entity/SpawnConditions.cs startLine: 86 @@ -56,8 +56,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Climate path: Common/Entity/SpawnConditions.cs startLine: 91 @@ -85,8 +85,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Runtime path: Common/Entity/SpawnConditions.cs startLine: 96 @@ -114,8 +114,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Worldgen path: Common/Entity/SpawnConditions.cs startLine: 101 @@ -143,8 +143,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Entity/SpawnConditions.cs startLine: 103 diff --git a/api/Vintagestory.API.Common.Entities.SyncedEntityPos.yml b/api/Vintagestory.API.Common.Entities.SyncedEntityPos.yml index 8dd6419e..7c58ef7a 100644 --- a/api/Vintagestory.API.Common.Entities.SyncedEntityPos.yml +++ b/api/Vintagestory.API.Common.Entities.SyncedEntityPos.yml @@ -34,8 +34,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SyncedEntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SyncedEntityPos path: Common/Entity/SyncedEntityPos.cs startLine: 7 @@ -129,8 +129,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SyncedEntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LastReceivedClientPosition path: Common/Entity/SyncedEntityPos.cs startLine: 10 @@ -156,8 +156,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SyncedEntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Entity/SyncedEntityPos.cs startLine: 12 @@ -185,8 +185,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SyncedEntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Entity/SyncedEntityPos.cs startLine: 17 @@ -217,8 +217,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SyncedEntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Entity/SyncedEntityPos.cs startLine: 22 @@ -257,8 +257,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SyncedEntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X path: Common/Entity/SyncedEntityPos.cs startLine: 26 @@ -289,8 +289,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SyncedEntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y path: Common/Entity/SyncedEntityPos.cs startLine: 32 @@ -321,8 +321,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SyncedEntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Z path: Common/Entity/SyncedEntityPos.cs startLine: 38 @@ -353,8 +353,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SyncedEntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Roll path: Common/Entity/SyncedEntityPos.cs startLine: 44 @@ -385,8 +385,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SyncedEntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Yaw path: Common/Entity/SyncedEntityPos.cs startLine: 50 @@ -417,8 +417,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SyncedEntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pitch path: Common/Entity/SyncedEntityPos.cs startLine: 56 @@ -449,8 +449,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SyncedEntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XInternal path: Common/Entity/SyncedEntityPos.cs startLine: 66 @@ -480,8 +480,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SyncedEntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: YInternal path: Common/Entity/SyncedEntityPos.cs startLine: 74 @@ -511,8 +511,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SyncedEntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ZInternal path: Common/Entity/SyncedEntityPos.cs startLine: 82 @@ -542,8 +542,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SyncedEntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RollInternal path: Common/Entity/SyncedEntityPos.cs startLine: 90 @@ -573,8 +573,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SyncedEntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: YawInternal path: Common/Entity/SyncedEntityPos.cs startLine: 98 @@ -604,8 +604,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SyncedEntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PitchInternal path: Common/Entity/SyncedEntityPos.cs startLine: 106 @@ -635,8 +635,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SyncedEntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StanceInternal path: Common/Entity/SyncedEntityPos.cs startLine: 114 @@ -666,8 +666,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SyncedEntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dirty path: Common/Entity/SyncedEntityPos.cs startLine: 124 @@ -697,8 +697,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SyncedEntityPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MarkClean path: Common/Entity/SyncedEntityPos.cs startLine: 133 diff --git a/api/Vintagestory.API.Common.Entities.TrackedPlayerProperties.yml b/api/Vintagestory.API.Common.Entities.TrackedPlayerProperties.yml index a4ff87a1..ca889bb4 100644 --- a/api/Vintagestory.API.Common.Entities.TrackedPlayerProperties.yml +++ b/api/Vintagestory.API.Common.Entities.TrackedPlayerProperties.yml @@ -30,8 +30,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/TrackedProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TrackedPlayerProperties path: Common/Entity/Player/TrackedProperties.cs startLine: 4 @@ -65,8 +65,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/TrackedProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EyesInWaterColorShift path: Common/Entity/Player/TrackedProperties.cs startLine: 6 @@ -92,8 +92,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/TrackedProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EyesInLavaColorShift path: Common/Entity/Player/TrackedProperties.cs startLine: 7 @@ -119,8 +119,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/TrackedProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EyesInLavaDepth path: Common/Entity/Player/TrackedProperties.cs startLine: 8 @@ -146,8 +146,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/TrackedProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EyesInWaterDepth path: Common/Entity/Player/TrackedProperties.cs startLine: 9 @@ -173,8 +173,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/TrackedProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DayLight path: Common/Entity/Player/TrackedProperties.cs startLine: 11 @@ -200,8 +200,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/TrackedProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DistanceToSpawnPoint path: Common/Entity/Player/TrackedProperties.cs startLine: 13 @@ -227,8 +227,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/TrackedProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MoonLight path: Common/Entity/Player/TrackedProperties.cs startLine: 16 @@ -254,8 +254,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/TrackedProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FallSpeed path: Common/Entity/Player/TrackedProperties.cs startLine: 17 @@ -281,8 +281,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/TrackedProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerChunkPos path: Common/Entity/Player/TrackedProperties.cs startLine: 18 @@ -308,8 +308,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/TrackedProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerPosDiv8 path: Common/Entity/Player/TrackedProperties.cs startLine: 20 @@ -335,8 +335,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/TrackedProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: posY path: Common/Entity/Player/TrackedProperties.cs startLine: 25 @@ -364,8 +364,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/TrackedProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: sunSlight path: Common/Entity/Player/TrackedProperties.cs startLine: 30 @@ -393,8 +393,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/TrackedProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Playstyle path: Common/Entity/Player/TrackedProperties.cs startLine: 36 @@ -422,8 +422,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/TrackedProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayListCode path: Common/Entity/Player/TrackedProperties.cs startLine: 38 @@ -449,8 +449,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/TrackedProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Entity/Player/TrackedProperties.cs startLine: 41 diff --git a/api/Vintagestory.API.Common.Entities.WorldGenSpawnConditions.yml b/api/Vintagestory.API.Common.Entities.WorldGenSpawnConditions.yml index e180c0ed..acf8ecd4 100644 --- a/api/Vintagestory.API.Common.Entities.WorldGenSpawnConditions.yml +++ b/api/Vintagestory.API.Common.Entities.WorldGenSpawnConditions.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WorldGenSpawnConditions path: Common/Entity/SpawnConditions.cs startLine: 188 @@ -83,8 +83,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TriesPerChunk path: Common/Entity/SpawnConditions.cs startLine: 193 @@ -112,8 +112,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/SpawnConditions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Entity/SpawnConditions.cs startLine: 195 diff --git a/api/Vintagestory.API.Common.EntitiesArgParser.yml b/api/Vintagestory.API.Common.EntitiesArgParser.yml index 1e29ce13..345b740c 100644 --- a/api/Vintagestory.API.Common.EntitiesArgParser.yml +++ b/api/Vintagestory.API.Common.EntitiesArgParser.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntitiesArgParser path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 505 @@ -73,8 +73,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 510 @@ -109,8 +109,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSyntaxExplanation path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 514 @@ -145,8 +145,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 525 @@ -175,8 +175,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 530 @@ -211,8 +211,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 535 @@ -242,8 +242,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 545 diff --git a/api/Vintagestory.API.Common.Entitlement.yml b/api/Vintagestory.API.Common.Entitlement.yml index 8cb92b7c..1054c746 100644 --- a/api/Vintagestory.API.Common.Entitlement.yml +++ b/api/Vintagestory.API.Common.Entitlement.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Entitlement path: Common/Entity/Player/IPlayer.cs startLine: 4 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Common/Entity/Player/IPlayer.cs startLine: 6 @@ -79,8 +79,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Name path: Common/Entity/Player/IPlayer.cs startLine: 7 diff --git a/api/Vintagestory.API.Common.EntityAgent.EntityClientPacketId.yml b/api/Vintagestory.API.Common.EntityAgent.EntityClientPacketId.yml index 7b1151be..dbae379f 100644 --- a/api/Vintagestory.API.Common.EntityAgent.EntityClientPacketId.yml +++ b/api/Vintagestory.API.Common.EntityAgent.EntityClientPacketId.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityClientPacketId path: Common/Entity/EntityAgent.cs startLine: 430 @@ -41,8 +41,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SitfloorEdge path: Common/Entity/EntityAgent.cs startLine: 432 diff --git a/api/Vintagestory.API.Common.EntityAgent.EntityServerPacketId.yml b/api/Vintagestory.API.Common.EntityAgent.EntityServerPacketId.yml index 014fb1db..220715a7 100644 --- a/api/Vintagestory.API.Common.EntityAgent.EntityServerPacketId.yml +++ b/api/Vintagestory.API.Common.EntityAgent.EntityServerPacketId.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityServerPacketId path: Common/Entity/EntityAgent.cs startLine: 422 @@ -45,8 +45,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Revive path: Common/Entity/EntityAgent.cs startLine: 424 @@ -71,8 +71,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Emote path: Common/Entity/EntityAgent.cs startLine: 425 @@ -97,8 +97,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Death path: Common/Entity/EntityAgent.cs startLine: 426 @@ -123,8 +123,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Hurt path: Common/Entity/EntityAgent.cs startLine: 427 @@ -149,8 +149,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayPlayerAnim path: Common/Entity/EntityAgent.cs startLine: 428 diff --git a/api/Vintagestory.API.Common.EntityAgent.yml b/api/Vintagestory.API.Common.EntityAgent.yml index 10197ed5..29ba2c25 100644 --- a/api/Vintagestory.API.Common.EntityAgent.yml +++ b/api/Vintagestory.API.Common.EntityAgent.yml @@ -70,8 +70,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityAgent path: Common/Entity/EntityAgent.cs startLine: 33 @@ -256,8 +256,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsCreature path: Common/Entity/EntityAgent.cs startLine: 35 @@ -293,8 +293,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BodyYaw path: Common/Entity/EntityAgent.cs startLine: 40 @@ -324,8 +324,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BodyYawServer path: Common/Entity/EntityAgent.cs startLine: 45 @@ -355,8 +355,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DeadNotify path: Common/Entity/EntityAgent.cs startLine: 50 @@ -384,8 +384,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HerdId path: Common/Entity/EntityAgent.cs startLine: 55 @@ -415,8 +415,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: controls path: Common/Entity/EntityAgent.cs startLine: 61 @@ -442,8 +442,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: servercontrols path: Common/Entity/EntityAgent.cs startLine: 62 @@ -469,8 +469,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MountedOn path: Common/Entity/EntityAgent.cs startLine: 67 @@ -498,8 +498,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentControls path: Common/Entity/EntityAgent.cs startLine: 68 @@ -525,8 +525,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LeftHandItemSlot path: Common/Entity/EntityAgent.cs startLine: 78 @@ -556,8 +556,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RightHandItemSlot path: Common/Entity/EntityAgent.cs startLine: 83 @@ -587,8 +587,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ActiveHandItemSlot path: Common/Entity/EntityAgent.cs startLine: 85 @@ -616,8 +616,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GearInventory path: Common/Entity/EntityAgent.cs startLine: 90 @@ -647,8 +647,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldDespawn path: Common/Entity/EntityAgent.cs startLine: 95 @@ -679,8 +679,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AllowDespawn path: Common/Entity/EntityAgent.cs startLine: 103 @@ -708,8 +708,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Entity/EntityAgent.cs startLine: 109 @@ -737,8 +737,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Initialize path: Common/Entity/EntityAgent.cs startLine: 116 @@ -779,8 +779,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Controls path: Common/Entity/EntityAgent.cs startLine: 146 @@ -810,8 +810,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ServerControls path: Common/Entity/EntityAgent.cs startLine: 154 @@ -841,8 +841,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsEyesSubmerged path: Common/Entity/EntityAgent.cs startLine: 163 @@ -872,8 +872,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryMount path: Common/Entity/EntityAgent.cs startLine: 175 @@ -907,8 +907,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: updateMountedState path: Common/Entity/EntityAgent.cs startLine: 195 @@ -933,8 +933,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: doMount path: Common/Entity/EntityAgent.cs startLine: 209 @@ -962,8 +962,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryUnmount path: Common/Entity/EntityAgent.cs startLine: 233 @@ -993,8 +993,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Die path: Common/Entity/EntityAgent.cs startLine: 252 @@ -1027,8 +1027,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnNoPath path: Common/Entity/EntityAgent.cs startLine: 274 @@ -1059,8 +1059,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnInteract path: Common/Entity/EntityAgent.cs startLine: 284 @@ -1100,8 +1100,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DidAttack path: Common/Entity/EntityAgent.cs startLine: 363 @@ -1131,8 +1131,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldReceiveDamage path: Common/Entity/EntityAgent.cs startLine: 376 @@ -1173,8 +1173,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReceiveDamage path: Common/Entity/EntityAgent.cs startLine: 383 @@ -1215,8 +1215,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReceiveSaturation path: Common/Entity/EntityAgent.cs startLine: 397 @@ -1259,8 +1259,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldReceiveSaturation path: Common/Entity/EntityAgent.cs startLine: 417 @@ -1305,8 +1305,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnGameTick path: Common/Entity/EntityAgent.cs startLine: 437 @@ -1341,8 +1341,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SpawnSnowStepParticles path: Common/Entity/EntityAgent.cs startLine: 542 @@ -1367,8 +1367,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SpawnFloatingSediment path: Common/Entity/EntityAgent.cs startLine: 559 @@ -1396,8 +1396,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: onAnimControls path: Common/Entity/EntityAgent.cs startLine: 595 @@ -1434,8 +1434,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HandleHandAnimations path: Common/Entity/EntityAgent.cs startLine: 600 @@ -1466,8 +1466,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StopHandAnims path: Common/Entity/EntityAgent.cs startLine: 605 @@ -1492,8 +1492,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: insideBlock path: Common/Entity/EntityAgent.cs startLine: 615 @@ -1521,8 +1521,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: insidePos path: Common/Entity/EntityAgent.cs startLine: 619 @@ -1550,8 +1550,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetWalkSpeedMultiplier path: Common/Entity/EntityAgent.cs startLine: 625 @@ -1587,8 +1587,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Common/Entity/EntityAgent.cs startLine: 653 @@ -1624,8 +1624,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Entity/EntityAgent.cs startLine: 679 @@ -1663,8 +1663,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetHeadPositionToWatchedAttributes path: Common/Entity/EntityAgent.cs startLine: 701 @@ -1692,8 +1692,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHeadPositionFromWatchedAttributes path: Common/Entity/EntityAgent.cs startLine: 715 @@ -1721,8 +1721,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryStopHandAction path: Common/Entity/EntityAgent.cs startLine: 729 @@ -1762,8 +1762,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WalkInventory path: Common/Entity/EntityAgent.cs startLine: 752 @@ -1794,8 +1794,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UpdateDebugAttributes path: Common/Entity/EntityAgent.cs startLine: 758 @@ -1823,8 +1823,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnTesselation path: Common/Entity/EntityAgent.cs startLine: 766 @@ -1862,8 +1862,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: hideClothing path: Common/Entity/EntityAgent.cs startLine: 773 @@ -1889,8 +1889,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: addGearToShape path: Common/Entity/EntityAgent.cs startLine: 776 @@ -1925,8 +1925,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: addGearToShape path: Common/Entity/EntityAgent.cs startLine: 812 @@ -1963,8 +1963,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryGiveItemStack path: Common/Entity/EntityAgent.cs startLine: 888 @@ -1999,8 +1999,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnLoadCollectibleMappings path: Common/Entity/EntityAgent.cs startLine: 925 @@ -2051,8 +2051,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnStoreCollectibleMappings path: Common/Entity/EntityAgent.cs startLine: 943 diff --git a/api/Vintagestory.API.Common.EntityBehaviorNameTag.yml b/api/Vintagestory.API.Common.EntityBehaviorNameTag.yml index a7c09a1b..5d430cf0 100644 --- a/api/Vintagestory.API.Common.EntityBehaviorNameTag.yml +++ b/api/Vintagestory.API.Common.EntityBehaviorNameTag.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Common/EntityBehavior/BehaviorNameTag.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityBehaviorNameTag path: Common/EntityBehavior/BehaviorNameTag.cs startLine: 5 @@ -87,8 +87,8 @@ items: source: remote: path: VintagestoryApi/Common/EntityBehavior/BehaviorNameTag.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DisplayName path: Common/EntityBehavior/BehaviorNameTag.cs startLine: 10 @@ -118,8 +118,8 @@ items: source: remote: path: VintagestoryApi/Common/EntityBehavior/BehaviorNameTag.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShowOnlyWhenTargeted path: Common/EntityBehavior/BehaviorNameTag.cs startLine: 18 @@ -149,8 +149,8 @@ items: source: remote: path: VintagestoryApi/Common/EntityBehavior/BehaviorNameTag.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderRange path: Common/EntityBehavior/BehaviorNameTag.cs startLine: 24 @@ -178,8 +178,8 @@ items: source: remote: path: VintagestoryApi/Common/EntityBehavior/BehaviorNameTag.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/EntityBehavior/BehaviorNameTag.cs startLine: 31 @@ -210,8 +210,8 @@ items: source: remote: path: VintagestoryApi/Common/EntityBehavior/BehaviorNameTag.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Initialize path: Common/EntityBehavior/BehaviorNameTag.cs startLine: 44 @@ -248,8 +248,8 @@ items: source: remote: path: VintagestoryApi/Common/EntityBehavior/BehaviorNameTag.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnEntitySpawn path: Common/EntityBehavior/BehaviorNameTag.cs startLine: 59 @@ -277,8 +277,8 @@ items: source: remote: path: VintagestoryApi/Common/EntityBehavior/BehaviorNameTag.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetName path: Common/EntityBehavior/BehaviorNameTag.cs startLine: 68 @@ -312,8 +312,8 @@ items: source: remote: path: VintagestoryApi/Common/EntityBehavior/BehaviorNameTag.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PropertyName path: Common/EntityBehavior/BehaviorNameTag.cs startLine: 80 diff --git a/api/Vintagestory.API.Common.EntityBehaviorPassivePhysics.yml b/api/Vintagestory.API.Common.EntityBehaviorPassivePhysics.yml index 92a5b450..bf9ebb37 100644 --- a/api/Vintagestory.API.Common.EntityBehaviorPassivePhysics.yml +++ b/api/Vintagestory.API.Common.EntityBehaviorPassivePhysics.yml @@ -32,8 +32,8 @@ items: source: remote: path: VintagestoryApi/Common/EntityBehavior/BehaviorPassivePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityBehaviorPassivePhysics path: Common/EntityBehavior/BehaviorPassivePhysics.cs startLine: 10 @@ -98,8 +98,8 @@ items: source: remote: path: VintagestoryApi/Common/EntityBehavior/BehaviorPassivePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UsePhysicsDormancyStateClient path: Common/EntityBehavior/BehaviorPassivePhysics.cs startLine: 15 @@ -127,8 +127,8 @@ items: source: remote: path: VintagestoryApi/Common/EntityBehavior/BehaviorPassivePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UsePhysicsDormancyStateServer path: Common/EntityBehavior/BehaviorPassivePhysics.cs startLine: 19 @@ -156,8 +156,8 @@ items: source: remote: path: VintagestoryApi/Common/EntityBehavior/BehaviorPassivePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: duringRenderFrame path: Common/EntityBehavior/BehaviorPassivePhysics.cs startLine: 51 @@ -183,8 +183,8 @@ items: source: remote: path: VintagestoryApi/Common/EntityBehavior/BehaviorPassivePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderOrder path: Common/EntityBehavior/BehaviorPassivePhysics.cs startLine: 52 @@ -321,8 +321,8 @@ items: source: remote: path: VintagestoryApi/Common/EntityBehavior/BehaviorPassivePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderRange path: Common/EntityBehavior/BehaviorPassivePhysics.cs startLine: 53 @@ -354,8 +354,8 @@ items: source: remote: path: VintagestoryApi/Common/EntityBehavior/BehaviorPassivePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: clientPhysicsTickTimeThreshold path: Common/EntityBehavior/BehaviorPassivePhysics.cs startLine: 56 @@ -381,8 +381,8 @@ items: source: remote: path: VintagestoryApi/Common/EntityBehavior/BehaviorPassivePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: collisionYExtra path: Common/EntityBehavior/BehaviorPassivePhysics.cs startLine: 60 @@ -408,8 +408,8 @@ items: source: remote: path: VintagestoryApi/Common/EntityBehavior/BehaviorPassivePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnPhysicsTickCallback path: Common/EntityBehavior/BehaviorPassivePhysics.cs startLine: 65 @@ -437,8 +437,8 @@ items: source: remote: path: VintagestoryApi/Common/EntityBehavior/BehaviorPassivePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnEntityDespawn path: Common/EntityBehavior/BehaviorPassivePhysics.cs startLine: 70 @@ -470,8 +470,8 @@ items: source: remote: path: VintagestoryApi/Common/EntityBehavior/BehaviorPassivePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/EntityBehavior/BehaviorPassivePhysics.cs startLine: 76 @@ -502,8 +502,8 @@ items: source: remote: path: VintagestoryApi/Common/EntityBehavior/BehaviorPassivePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Initialize path: Common/EntityBehavior/BehaviorPassivePhysics.cs startLine: 81 @@ -541,8 +541,8 @@ items: source: remote: path: VintagestoryApi/Common/EntityBehavior/BehaviorPassivePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnRenderFrame path: Common/EntityBehavior/BehaviorPassivePhysics.cs startLine: 110 @@ -581,8 +581,8 @@ items: source: remote: path: VintagestoryApi/Common/EntityBehavior/BehaviorPassivePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnGameTick path: Common/EntityBehavior/BehaviorPassivePhysics.cs startLine: 124 @@ -617,8 +617,8 @@ items: source: remote: path: VintagestoryApi/Common/EntityBehavior/BehaviorPassivePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: onPhysicsTick path: Common/EntityBehavior/BehaviorPassivePhysics.cs startLine: 133 @@ -651,8 +651,8 @@ items: source: remote: path: VintagestoryApi/Common/EntityBehavior/BehaviorPassivePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DoPhysics path: Common/EntityBehavior/BehaviorPassivePhysics.cs startLine: 191 @@ -689,8 +689,8 @@ items: source: remote: path: VintagestoryApi/Common/EntityBehavior/BehaviorPassivePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PropertyName path: Common/EntityBehavior/BehaviorPassivePhysics.cs startLine: 382 @@ -721,8 +721,8 @@ items: source: remote: path: VintagestoryApi/Common/EntityBehavior/BehaviorPassivePhysics.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Common/EntityBehavior/BehaviorPassivePhysics.cs startLine: 386 diff --git a/api/Vintagestory.API.Common.EntityChunky.yml b/api/Vintagestory.API.Common.EntityChunky.yml index 0ccf2106..b8953805 100644 --- a/api/Vintagestory.API.Common.EntityChunky.yml +++ b/api/Vintagestory.API.Common.EntityChunky.yml @@ -36,8 +36,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityChunky path: Common/Entity/EntityChunky.cs startLine: 10 @@ -219,8 +219,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: blocks path: Common/Entity/EntityChunky.cs startLine: 12 @@ -246,8 +246,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: subDimensionIndex path: Common/Entity/EntityChunky.cs startLine: 18 @@ -278,8 +278,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsInteractable path: Common/Entity/EntityChunky.cs startLine: 23 @@ -310,8 +310,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ApplyGravity path: Common/Entity/EntityChunky.cs startLine: 28 @@ -342,8 +342,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Entity/EntityChunky.cs startLine: 33 @@ -371,8 +371,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateAndLinkWithDimension path: Common/Entity/EntityChunky.cs startLine: 40 @@ -404,8 +404,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AssociateWithDimension path: Common/Entity/EntityChunky.cs startLine: 49 @@ -433,8 +433,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Initialize path: Common/Entity/EntityChunky.cs startLine: 58 @@ -474,8 +474,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnGameTick path: Common/Entity/EntityChunky.cs startLine: 89 @@ -510,8 +510,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnReceivedServerPos path: Common/Entity/EntityChunky.cs startLine: 112 @@ -545,8 +545,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnEntityDespawn path: Common/Entity/EntityChunky.cs startLine: 132 @@ -578,8 +578,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnReceivedServerAnimations path: Common/Entity/EntityChunky.cs startLine: 143 @@ -616,8 +616,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UpdateDebugAttributes path: Common/Entity/EntityChunky.cs startLine: 148 @@ -645,8 +645,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartAnimation path: Common/Entity/EntityChunky.cs startLine: 153 @@ -681,8 +681,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StopAnimation path: Common/Entity/EntityChunky.cs startLine: 157 @@ -717,8 +717,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Die path: Common/Entity/EntityChunky.cs startLine: 161 @@ -751,8 +751,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnCollideWithLiquid path: Common/Entity/EntityChunky.cs startLine: 188 @@ -780,8 +780,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldReceiveDamage path: Common/Entity/EntityChunky.cs startLine: 194 @@ -822,8 +822,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReceiveDamage path: Common/Entity/EntityChunky.cs startLine: 199 @@ -864,8 +864,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Entity/EntityChunky.cs startLine: 204 @@ -902,8 +902,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityChunky.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SwimmingOffsetY path: Common/Entity/EntityChunky.cs startLine: 217 diff --git a/api/Vintagestory.API.Common.EntityControls.yml b/api/Vintagestory.API.Common.EntityControls.yml index 7305724e..ec1a944d 100644 --- a/api/Vintagestory.API.Common.EntityControls.yml +++ b/api/Vintagestory.API.Common.EntityControls.yml @@ -62,8 +62,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityControls path: Common/Entity/EntityControls.cs startLine: 93 @@ -99,8 +99,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnAction path: Common/Entity/EntityControls.cs startLine: 98 @@ -128,8 +128,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Flags path: Common/Entity/EntityControls.cs startLine: 102 @@ -157,8 +157,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DetachedMode path: Common/Entity/EntityControls.cs startLine: 107 @@ -186,8 +186,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NoClip path: Common/Entity/EntityControls.cs startLine: 112 @@ -215,8 +215,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FlyPlaneLock path: Common/Entity/EntityControls.cs startLine: 117 @@ -244,8 +244,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WalkVector path: Common/Entity/EntityControls.cs startLine: 122 @@ -273,8 +273,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FlyVector path: Common/Entity/EntityControls.cs startLine: 127 @@ -302,8 +302,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TriesToMove path: Common/Entity/EntityControls.cs startLine: 132 @@ -333,8 +333,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsFlying path: Common/Entity/EntityControls.cs startLine: 137 @@ -362,8 +362,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsClimbing path: Common/Entity/EntityControls.cs startLine: 142 @@ -391,8 +391,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsAiming path: Common/Entity/EntityControls.cs startLine: 147 @@ -420,8 +420,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsStepping path: Common/Entity/EntityControls.cs startLine: 152 @@ -449,8 +449,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HandUse path: Common/Entity/EntityControls.cs startLine: 157 @@ -478,8 +478,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HandUsingBlockSel path: Common/Entity/EntityControls.cs startLine: 162 @@ -507,8 +507,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UsingCount path: Common/Entity/EntityControls.cs startLine: 165 @@ -534,8 +534,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UsingBeginMS path: Common/Entity/EntityControls.cs startLine: 166 @@ -561,8 +561,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LeftUsingHeldItemTransformBefore path: Common/Entity/EntityControls.cs startLine: 167 @@ -588,8 +588,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UsingHeldItemTransformBefore path: Common/Entity/EntityControls.cs startLine: 170 @@ -627,8 +627,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UsingHeldItemTransformAfter path: Common/Entity/EntityControls.cs startLine: 172 @@ -666,8 +666,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MovespeedMultiplier path: Common/Entity/EntityControls.cs startLine: 177 @@ -695,8 +695,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dirty path: Common/Entity/EntityControls.cs startLine: 182 @@ -724,8 +724,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GlideSpeed path: Common/Entity/EntityControls.cs startLine: 184 @@ -751,8 +751,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Forward path: Common/Entity/EntityControls.cs startLine: 190 @@ -782,8 +782,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Backward path: Common/Entity/EntityControls.cs startLine: 202 @@ -813,8 +813,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Left path: Common/Entity/EntityControls.cs startLine: 211 @@ -844,8 +844,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Right path: Common/Entity/EntityControls.cs startLine: 220 @@ -875,8 +875,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Jump path: Common/Entity/EntityControls.cs startLine: 229 @@ -906,8 +906,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sneak path: Common/Entity/EntityControls.cs startLine: 238 @@ -937,8 +937,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Gliding path: Common/Entity/EntityControls.cs startLine: 247 @@ -968,8 +968,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FloorSitting path: Common/Entity/EntityControls.cs startLine: 256 @@ -999,8 +999,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sprint path: Common/Entity/EntityControls.cs startLine: 265 @@ -1030,8 +1030,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Up path: Common/Entity/EntityControls.cs startLine: 274 @@ -1061,8 +1061,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Down path: Common/Entity/EntityControls.cs startLine: 283 @@ -1092,8 +1092,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LeftMouseDown path: Common/Entity/EntityControls.cs startLine: 292 @@ -1123,8 +1123,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RightMouseDown path: Common/Entity/EntityControls.cs startLine: 301 @@ -1154,8 +1154,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CtrlKey path: Common/Entity/EntityControls.cs startLine: 310 @@ -1185,8 +1185,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShiftKey path: Common/Entity/EntityControls.cs startLine: 319 @@ -1216,8 +1216,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Common/Entity/EntityControls.cs startLine: 325 @@ -1250,8 +1250,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AttemptToggleAction path: Common/Entity/EntityControls.cs startLine: 339 @@ -1284,8 +1284,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CalcMovementVectors path: Common/Entity/EntityControls.cs startLine: 357 @@ -1322,8 +1322,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetFrom path: Common/Entity/EntityControls.cs startLine: 396 @@ -1354,8 +1354,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UpdateFromPacket path: Common/Entity/EntityControls.cs startLine: 415 @@ -1392,8 +1392,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StopAllMovement path: Common/Entity/EntityControls.cs startLine: 427 @@ -1420,8 +1420,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToInt path: Common/Entity/EntityControls.cs startLine: 436 @@ -1451,8 +1451,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromInt path: Common/Entity/EntityControls.cs startLine: 462 @@ -1486,8 +1486,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Common/Entity/EntityControls.cs startLine: 486 @@ -1515,8 +1515,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Entity/EntityControls.cs startLine: 491 diff --git a/api/Vintagestory.API.Common.EntityCubeParticles.yml b/api/Vintagestory.API.Common.EntityCubeParticles.yml index 23ddd949..34aca8b1 100644 --- a/api/Vintagestory.API.Common.EntityCubeParticles.yml +++ b/api/Vintagestory.API.Common.EntityCubeParticles.yml @@ -35,8 +35,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/EntityVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityCubeParticles path: Common/Particle/EntityVoxelParticles.cs startLine: 7 @@ -99,8 +99,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/EntityVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: particlePos path: Common/Particle/EntityVoxelParticles.cs startLine: 9 @@ -126,8 +126,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/EntityVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: quantity path: Common/Particle/EntityVoxelParticles.cs startLine: 10 @@ -153,8 +153,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/EntityVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: radius path: Common/Particle/EntityVoxelParticles.cs startLine: 11 @@ -180,8 +180,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/EntityVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: minScale path: Common/Particle/EntityVoxelParticles.cs startLine: 12 @@ -207,8 +207,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/EntityVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: maxScale path: Common/Particle/EntityVoxelParticles.cs startLine: 13 @@ -234,8 +234,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/EntityVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DieInLiquid path: Common/Particle/EntityVoxelParticles.cs startLine: 18 @@ -267,8 +267,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/EntityVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Particle/EntityVoxelParticles.cs startLine: 20 @@ -296,8 +296,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/EntityVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Particle/EntityVoxelParticles.cs startLine: 22 @@ -340,8 +340,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/EntityVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Init path: Common/Particle/EntityVoxelParticles.cs startLine: 41 @@ -373,8 +373,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/EntityVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRgbaColor path: Common/Particle/EntityVoxelParticles.cs startLine: 55 @@ -408,8 +408,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/EntityVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pos path: Common/Particle/EntityVoxelParticles.cs startLine: 60 @@ -441,8 +441,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/EntityVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetVelocity path: Common/Particle/EntityVoxelParticles.cs startLine: 62 @@ -477,8 +477,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/EntityVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Size path: Common/Particle/EntityVoxelParticles.cs startLine: 69 @@ -510,8 +510,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/EntityVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParticleModel path: Common/Particle/EntityVoxelParticles.cs startLine: 71 @@ -543,8 +543,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/EntityVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Quantity path: Common/Particle/EntityVoxelParticles.cs startLine: 73 @@ -576,8 +576,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/EntityVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LifeLength path: Common/Particle/EntityVoxelParticles.cs startLine: 75 @@ -609,8 +609,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/EntityVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VertexFlags path: Common/Particle/EntityVoxelParticles.cs startLine: 77 @@ -642,8 +642,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/EntityVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SecondaryParticles path: Common/Particle/EntityVoxelParticles.cs startLine: 79 @@ -675,8 +675,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/EntityVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Common/Particle/EntityVoxelParticles.cs startLine: 80 @@ -708,8 +708,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/EntityVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Particle/EntityVoxelParticles.cs startLine: 90 diff --git a/api/Vintagestory.API.Common.EntityDeathDelegate.yml b/api/Vintagestory.API.Common.EntityDeathDelegate.yml index 8c911b36..f98bb7c2 100644 --- a/api/Vintagestory.API.Common.EntityDeathDelegate.yml +++ b/api/Vintagestory.API.Common.EntityDeathDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityDeathDelegate path: Common/API/Delegates.cs startLine: 120 diff --git a/api/Vintagestory.API.Common.EntityDelegate.yml b/api/Vintagestory.API.Common.EntityDelegate.yml index 14f5cb3e..b6a21413 100644 --- a/api/Vintagestory.API.Common.EntityDelegate.yml +++ b/api/Vintagestory.API.Common.EntityDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityDelegate path: Common/API/Delegates.cs startLine: 114 diff --git a/api/Vintagestory.API.Common.EntityDespawnDelegate.yml b/api/Vintagestory.API.Common.EntityDespawnDelegate.yml index eeab46ff..65e5c41f 100644 --- a/api/Vintagestory.API.Common.EntityDespawnDelegate.yml +++ b/api/Vintagestory.API.Common.EntityDespawnDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityDespawnDelegate path: Common/API/Delegates.cs startLine: 118 diff --git a/api/Vintagestory.API.Common.EntityFloatStats.yml b/api/Vintagestory.API.Common.EntityFloatStats.yml index 58e97e88..0d7b78f7 100644 --- a/api/Vintagestory.API.Common.EntityFloatStats.yml +++ b/api/Vintagestory.API.Common.EntityFloatStats.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityStats.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityFloatStats path: Common/Entity/EntityStats.cs startLine: 178 @@ -58,8 +58,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityStats.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ValuesByKey path: Common/Entity/EntityStats.cs startLine: 180 @@ -85,8 +85,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityStats.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlendType path: Common/Entity/EntityStats.cs startLine: 181 @@ -112,8 +112,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityStats.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Entity/EntityStats.cs startLine: 182 @@ -141,8 +141,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityStats.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlended path: Common/Entity/EntityStats.cs startLine: 187 @@ -169,8 +169,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityStats.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Common/Entity/EntityStats.cs startLine: 232 @@ -205,8 +205,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityStats.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Remove path: Common/Entity/EntityStats.cs startLine: 236 @@ -237,8 +237,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityStats.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToTreeAttributes path: Common/Entity/EntityStats.cs startLine: 241 @@ -271,8 +271,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityStats.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromTreeAttributes path: Common/Entity/EntityStats.cs startLine: 250 diff --git a/api/Vintagestory.API.Common.EntityHeadController.yml b/api/Vintagestory.API.Common.EntityHeadController.yml index 1fcd5786..d9bc661c 100644 --- a/api/Vintagestory.API.Common.EntityHeadController.yml +++ b/api/Vintagestory.API.Common.EntityHeadController.yml @@ -27,8 +27,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/EntityHeadController.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityHeadController path: Common/Model/Animation/EntityHeadController.cs startLine: 121 @@ -64,8 +64,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/EntityHeadController.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HeadPose path: Common/Model/Animation/EntityHeadController.cs startLine: 123 @@ -91,8 +91,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/EntityHeadController.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NeckPose path: Common/Model/Animation/EntityHeadController.cs startLine: 124 @@ -118,8 +118,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/EntityHeadController.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UpperTorsoPose path: Common/Model/Animation/EntityHeadController.cs startLine: 125 @@ -145,8 +145,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/EntityHeadController.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LowerTorsoPose path: Common/Model/Animation/EntityHeadController.cs startLine: 126 @@ -172,8 +172,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/EntityHeadController.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UpperFootLPose path: Common/Model/Animation/EntityHeadController.cs startLine: 128 @@ -199,8 +199,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/EntityHeadController.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UpperFootRPose path: Common/Model/Animation/EntityHeadController.cs startLine: 129 @@ -226,8 +226,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/EntityHeadController.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: entity path: Common/Model/Animation/EntityHeadController.cs startLine: 132 @@ -253,8 +253,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/EntityHeadController.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: animManager path: Common/Model/Animation/EntityHeadController.cs startLine: 133 @@ -280,8 +280,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/EntityHeadController.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: yawOffset path: Common/Model/Animation/EntityHeadController.cs startLine: 135 @@ -307,8 +307,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/EntityHeadController.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: pitchOffset path: Common/Model/Animation/EntityHeadController.cs startLine: 135 @@ -334,8 +334,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/EntityHeadController.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Model/Animation/EntityHeadController.cs startLine: 139 @@ -370,8 +370,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/EntityHeadController.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnFrame path: Common/Model/Animation/EntityHeadController.cs startLine: 158 diff --git a/api/Vintagestory.API.Common.EntityHumanoid.yml b/api/Vintagestory.API.Common.EntityHumanoid.yml index adbec4a0..82bd3390 100644 --- a/api/Vintagestory.API.Common.EntityHumanoid.yml +++ b/api/Vintagestory.API.Common.EntityHumanoid.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityHumanoid.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityHumanoid path: Common/Entity/EntityHumanoid.cs startLine: 2 diff --git a/api/Vintagestory.API.Common.EntityItem.yml b/api/Vintagestory.API.Common.EntityItem.yml index 548ab70e..d5204531 100644 --- a/api/Vintagestory.API.Common.EntityItem.yml +++ b/api/Vintagestory.API.Common.EntityItem.yml @@ -39,8 +39,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityItem path: Common/Entity/EntityItem.cs startLine: 19 @@ -220,8 +220,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Slot path: Common/Entity/EntityItem.cs startLine: 21 @@ -247,8 +247,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: itemSpawnedMilliseconds path: Common/Entity/EntityItem.cs startLine: 23 @@ -274,8 +274,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Itemstack path: Common/Entity/EntityItem.cs startLine: 28 @@ -305,8 +305,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ByPlayerUid path: Common/Entity/EntityItem.cs startLine: 37 @@ -336,8 +336,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaterialDensity path: Common/Entity/EntityItem.cs startLine: 46 @@ -368,8 +368,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsInteractable path: Common/Entity/EntityItem.cs startLine: 54 @@ -400,8 +400,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LightHsv path: Common/Entity/EntityItem.cs startLine: 62 @@ -432,8 +432,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Entity/EntityItem.cs startLine: 72 @@ -461,8 +461,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Initialize path: Common/Entity/EntityItem.cs startLine: 78 @@ -502,8 +502,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnGameTick path: Common/Entity/EntityItem.cs startLine: 146 @@ -538,8 +538,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnEntityDespawn path: Common/Entity/EntityItem.cs startLine: 264 @@ -571,8 +571,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnReceivedServerAnimations path: Common/Entity/EntityItem.cs startLine: 275 @@ -609,8 +609,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UpdateDebugAttributes path: Common/Entity/EntityItem.cs startLine: 280 @@ -638,8 +638,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartAnimation path: Common/Entity/EntityItem.cs startLine: 285 @@ -674,8 +674,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StopAnimation path: Common/Entity/EntityItem.cs startLine: 289 @@ -710,8 +710,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Die path: Common/Entity/EntityItem.cs startLine: 293 @@ -744,8 +744,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromItemstack path: Common/Entity/EntityItem.cs startLine: 315 @@ -788,8 +788,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanCollect path: Common/Entity/EntityItem.cs startLine: 338 @@ -824,8 +824,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnCollected path: Common/Entity/EntityItem.cs startLine: 343 @@ -860,8 +860,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnCollideWithLiquid path: Common/Entity/EntityItem.cs startLine: 348 @@ -889,8 +889,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldReceiveDamage path: Common/Entity/EntityItem.cs startLine: 354 @@ -931,8 +931,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReceiveDamage path: Common/Entity/EntityItem.cs startLine: 361 @@ -973,8 +973,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Entity/EntityItem.cs startLine: 369 @@ -1011,8 +1011,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SwimmingOffsetY path: Common/Entity/EntityItem.cs startLine: 388 diff --git a/api/Vintagestory.API.Common.EntityItemSlot.yml b/api/Vintagestory.API.Common.EntityItemSlot.yml index 0f5621c1..c9fa288a 100644 --- a/api/Vintagestory.API.Common.EntityItemSlot.yml +++ b/api/Vintagestory.API.Common.EntityItemSlot.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityItemSlot path: Common/Entity/EntityItem.cs startLine: 9 @@ -84,8 +84,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Ei path: Common/Entity/EntityItem.cs startLine: 11 @@ -111,8 +111,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityItem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Entity/EntityItem.cs startLine: 13 diff --git a/api/Vintagestory.API.Common.EntityPlayer.yml b/api/Vintagestory.API.Common.EntityPlayer.yml index 142072a6..213a20b2 100644 --- a/api/Vintagestory.API.Common.EntityPlayer.yml +++ b/api/Vintagestory.API.Common.EntityPlayer.yml @@ -90,8 +90,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityPlayer path: Common/Entity/EntityPlayer.cs startLine: 19 @@ -291,8 +291,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreviousBlockSelection path: Common/Entity/EntityPlayer.cs startLine: 24 @@ -320,8 +320,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockSelection path: Common/Entity/EntityPlayer.cs startLine: 29 @@ -349,8 +349,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntitySelection path: Common/Entity/EntityPlayer.cs startLine: 34 @@ -378,8 +378,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DeathReason path: Common/Entity/EntityPlayer.cs startLine: 39 @@ -407,8 +407,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CameraPos path: Common/Entity/EntityPlayer.cs startLine: 44 @@ -436,8 +436,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WalkYaw path: Common/Entity/EntityPlayer.cs startLine: 49 @@ -465,8 +465,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WalkPitch path: Common/Entity/EntityPlayer.cs startLine: 53 @@ -494,8 +494,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnFootStep path: Common/Entity/EntityPlayer.cs startLine: 58 @@ -523,8 +523,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnImpact path: Common/Entity/EntityPlayer.cs startLine: 63 @@ -552,8 +552,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnCanSpawnNearby path: Common/Entity/EntityPlayer.cs startLine: 68 @@ -581,8 +581,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: talkUtil path: Common/Entity/EntityPlayer.cs startLine: 70 @@ -608,8 +608,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BodyYawLimits path: Common/Entity/EntityPlayer.cs startLine: 71 @@ -635,8 +635,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HeadYawLimits path: Common/Entity/EntityPlayer.cs startLine: 72 @@ -662,8 +662,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: entityListForPartitioning path: Common/Entity/EntityPlayer.cs startLine: 77 @@ -691,8 +691,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: walkSpeed path: Common/Entity/EntityPlayer.cs startLine: 81 @@ -720,8 +720,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BodyYaw path: Common/Entity/EntityPlayer.cs startLine: 86 @@ -752,8 +752,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LastReviveTotalHours path: Common/Entity/EntityPlayer.cs startLine: 103 @@ -781,8 +781,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UpdatePartitioning path: Common/Entity/EntityPlayer.cs startLine: 120 @@ -807,8 +807,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StoreWithChunk path: Common/Entity/EntityPlayer.cs startLine: 126 @@ -839,8 +839,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerUID path: Common/Entity/EntityPlayer.cs startLine: 135 @@ -870,8 +870,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RightHandItemSlot path: Common/Entity/EntityPlayer.cs startLine: 143 @@ -902,8 +902,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LeftHandItemSlot path: Common/Entity/EntityPlayer.cs startLine: 155 @@ -934,8 +934,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GearInventory path: Common/Entity/EntityPlayer.cs startLine: 167 @@ -966,8 +966,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LightHsv path: Common/Entity/EntityPlayer.cs startLine: 180 @@ -998,8 +998,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AlwaysActive path: Common/Entity/EntityPlayer.cs startLine: 230 @@ -1030,8 +1030,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldDespawn path: Common/Entity/EntityPlayer.cs startLine: 235 @@ -1062,8 +1062,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsInteractable path: Common/Entity/EntityPlayer.cs startLine: 248 @@ -1094,8 +1094,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LadderFixDelta path: Common/Entity/EntityPlayer.cs startLine: 257 @@ -1126,8 +1126,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Player path: Common/Entity/EntityPlayer.cs startLine: 262 @@ -1157,8 +1157,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: selfNowShadowPass path: Common/Entity/EntityPlayer.cs startLine: 273 @@ -1184,8 +1184,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AnimManager path: Common/Entity/EntityPlayer.cs startLine: 275 @@ -1219,8 +1219,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OtherAnimManager path: Common/Entity/EntityPlayer.cs startLine: 290 @@ -1248,8 +1248,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TpAnimManager path: Common/Entity/EntityPlayer.cs startLine: 304 @@ -1277,8 +1277,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Entity/EntityPlayer.cs startLine: 306 @@ -1306,8 +1306,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Initialize path: Common/Entity/EntityPlayer.cs startLine: 345 @@ -1347,8 +1347,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PrevFrameCanStandUp path: Common/Entity/EntityPlayer.cs startLine: 378 @@ -1374,8 +1374,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: selfClimateCond path: Common/Entity/EntityPlayer.cs startLine: 379 @@ -1401,8 +1401,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetWalkSpeedMultiplier path: Common/Entity/EntityPlayer.cs startLine: 382 @@ -1439,8 +1439,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnSelfBeforeRender path: Common/Entity/EntityPlayer.cs startLine: 408 @@ -1471,8 +1471,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnTesselation path: Common/Entity/EntityPlayer.cs startLine: 414 @@ -1510,8 +1510,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetInsideTorsoBlockSoundSource path: Common/Entity/EntityPlayer.cs startLine: 550 @@ -1541,8 +1541,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetInsideLegsBlockSoundSource path: Common/Entity/EntityPlayer.cs startLine: 556 @@ -1572,8 +1572,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayInsideSound path: Common/Entity/EntityPlayer.cs startLine: 562 @@ -1603,8 +1603,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayStepSound path: Common/Entity/EntityPlayer.cs startLine: 604 @@ -1637,8 +1637,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnGameTick path: Common/Entity/EntityPlayer.cs startLine: 645 @@ -1673,8 +1673,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnAsyncParticleTick path: Common/Entity/EntityPlayer.cs startLine: 681 @@ -1709,8 +1709,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: sidewaysSwivelAngle path: Common/Entity/EntityPlayer.cs startLine: 699 @@ -1736,8 +1736,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HandleHandAnimations path: Common/Entity/EntityPlayer.cs startLine: 764 @@ -1770,8 +1770,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: protectEyesFromWind path: Common/Entity/EntityPlayer.cs startLine: 880 @@ -1802,8 +1802,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: onAnimControls path: Common/Entity/EntityPlayer.cs startLine: 925 @@ -1842,8 +1842,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: canPlayEdgeSitAnim path: Common/Entity/EntityPlayer.cs startLine: 980 @@ -1870,8 +1870,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanSpawnNearby path: Common/Entity/EntityPlayer.cs startLine: 1023 @@ -1905,8 +1905,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnFallToGround path: Common/Entity/EntityPlayer.cs startLine: 1033 @@ -1941,8 +1941,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetNearestBlockSoundSource path: Common/Entity/EntityPlayer.cs startLine: 1069 @@ -1988,8 +1988,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: getSoundSourceBlockAt path: Common/Entity/EntityPlayer.cs startLine: 1116 @@ -2028,8 +2028,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryGiveItemStack path: Common/Entity/EntityPlayer.cs startLine: 1140 @@ -2064,8 +2064,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Die path: Common/Entity/EntityPlayer.cs startLine: 1148 @@ -2098,8 +2098,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryMount path: Common/Entity/EntityPlayer.cs startLine: 1184 @@ -2134,8 +2134,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Revive path: Common/Entity/EntityPlayer.cs startLine: 1194 @@ -2163,8 +2163,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayEntitySound path: Common/Entity/EntityPlayer.cs startLine: 1204 @@ -2208,8 +2208,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: talkTypeByAnimation path: Common/Entity/EntityPlayer.cs startLine: 1220 @@ -2235,8 +2235,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnReceivedServerPacket path: Common/Entity/EntityPlayer.cs startLine: 1230 @@ -2279,8 +2279,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnReceivedClientPacket path: Common/Entity/EntityPlayer.cs startLine: 1270 @@ -2321,8 +2321,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldReceiveDamage path: Common/Entity/EntityPlayer.cs startLine: 1288 @@ -2363,8 +2363,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Ignite path: Common/Entity/EntityPlayer.cs startLine: 1296 @@ -2391,8 +2391,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnHurt path: Common/Entity/EntityPlayer.cs startLine: 1305 @@ -2429,8 +2429,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryStopHandAction path: Common/Entity/EntityPlayer.cs startLine: 1343 @@ -2470,8 +2470,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WalkInventory path: Common/Entity/EntityPlayer.cs startLine: 1366 @@ -2503,8 +2503,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetCurrentlyControlledPlayer path: Common/Entity/EntityPlayer.cs startLine: 1386 @@ -2531,8 +2531,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnCollideWithLiquid path: Common/Entity/EntityPlayer.cs startLine: 1391 @@ -2560,8 +2560,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TeleportToDouble path: Common/Entity/EntityPlayer.cs startLine: 1402 @@ -2605,8 +2605,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetName path: Common/Entity/EntityPlayer.cs startLine: 1452 @@ -2637,8 +2637,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetInfoText path: Common/Entity/EntityPlayer.cs startLine: 1459 @@ -2669,8 +2669,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Entity/EntityPlayer.cs startLine: 1482 @@ -2708,8 +2708,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UpdateDebugAttributes path: Common/Entity/EntityPlayer.cs startLine: 1489 diff --git a/api/Vintagestory.API.Common.EntitySelection.yml b/api/Vintagestory.API.Common.EntitySelection.yml index 1a6d9a9b..c23dab98 100644 --- a/api/Vintagestory.API.Common.EntitySelection.yml +++ b/api/Vintagestory.API.Common.EntitySelection.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntitySelection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntitySelection path: Common/Entity/EntitySelection.cs startLine: 5 @@ -55,8 +55,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntitySelection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Entity path: Common/Entity/EntitySelection.cs startLine: 10 @@ -84,8 +84,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntitySelection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Position path: Common/Entity/EntitySelection.cs startLine: 15 @@ -113,8 +113,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntitySelection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Face path: Common/Entity/EntitySelection.cs startLine: 20 @@ -142,8 +142,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntitySelection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HitPosition path: Common/Entity/EntitySelection.cs startLine: 25 @@ -171,8 +171,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntitySelection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Entity/EntitySelection.cs startLine: 28 diff --git a/api/Vintagestory.API.Common.EntityStat-1.yml b/api/Vintagestory.API.Common.EntityStat-1.yml index 1862606f..c252f61c 100644 --- a/api/Vintagestory.API.Common.EntityStat-1.yml +++ b/api/Vintagestory.API.Common.EntityStat-1.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityStats.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityStat path: Common/Entity/EntityStats.cs startLine: 263 @@ -58,8 +58,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityStats.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Value path: Common/Entity/EntityStats.cs startLine: 265 @@ -87,8 +87,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityStats.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Weight path: Common/Entity/EntityStats.cs startLine: 266 @@ -116,8 +116,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityStats.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Persistent path: Common/Entity/EntityStats.cs startLine: 267 diff --git a/api/Vintagestory.API.Common.EntityStats.yml b/api/Vintagestory.API.Common.EntityStats.yml index 3bbb3205..14409a9b 100644 --- a/api/Vintagestory.API.Common.EntityStats.yml +++ b/api/Vintagestory.API.Common.EntityStats.yml @@ -24,8 +24,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityStats.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityStats path: Common/Entity/EntityStats.cs startLine: 7 @@ -66,8 +66,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityStats.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Entity/EntityStats.cs startLine: 13 @@ -98,8 +98,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityStats.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Common/Entity/EntityStats.cs startLine: 27 @@ -132,8 +132,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityStats.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetEnumerator path: Common/Entity/EntityStats.cs startLine: 39 @@ -160,8 +160,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityStats.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToTreeAttributes path: Common/Entity/EntityStats.cs startLine: 58 @@ -194,8 +194,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityStats.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromTreeAttributes path: Common/Entity/EntityStats.cs startLine: 72 @@ -223,8 +223,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityStats.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Register path: Common/Entity/EntityStats.cs startLine: 91 @@ -264,8 +264,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityStats.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Common/Entity/EntityStats.cs startLine: 108 @@ -311,8 +311,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityStats.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Remove path: Common/Entity/EntityStats.cs startLine: 134 @@ -352,8 +352,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityStats.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlended path: Common/Entity/EntityStats.cs startLine: 158 diff --git a/api/Vintagestory.API.Common.EntityTypeArgParser.yml b/api/Vintagestory.API.Common.EntityTypeArgParser.yml index ac5aa6ec..a678d2c3 100644 --- a/api/Vintagestory.API.Common.EntityTypeArgParser.yml +++ b/api/Vintagestory.API.Common.EntityTypeArgParser.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityTypeArgParser path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 449 @@ -73,8 +73,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 454 @@ -109,8 +109,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSyntaxExplanation path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 459 @@ -145,8 +145,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 465 @@ -175,8 +175,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 470 @@ -206,8 +206,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 476 @@ -248,8 +248,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValidRange path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 494 @@ -281,8 +281,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 499 diff --git a/api/Vintagestory.API.Common.EntityUpdate.yml b/api/Vintagestory.API.Common.EntityUpdate.yml index 49fc4a1d..20b46532 100644 --- a/api/Vintagestory.API.Common.EntityUpdate.yml +++ b/api/Vintagestory.API.Common.EntityUpdate.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityUpdate path: Common/API/IBlockAccessor.cs startLine: 40 @@ -54,8 +54,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityId path: Common/API/IBlockAccessor.cs startLine: 45 @@ -83,8 +83,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityProperties path: Common/API/IBlockAccessor.cs startLine: 50 @@ -112,8 +112,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OldPosition path: Common/API/IBlockAccessor.cs startLine: 55 @@ -141,8 +141,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NewPosition path: Common/API/IBlockAccessor.cs startLine: 56 diff --git a/api/Vintagestory.API.Common.EnumAnimationBlendMode.yml b/api/Vintagestory.API.Common.EnumAnimationBlendMode.yml index 36736374..b2bcca26 100644 --- a/api/Vintagestory.API.Common.EnumAnimationBlendMode.yml +++ b/api/Vintagestory.API.Common.EnumAnimationBlendMode.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumAnimationBlendMode path: Common/Model/Animation/AnimationMetaData.cs startLine: 13 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Common/Model/Animation/AnimationMetaData.cs startLine: 18 @@ -71,8 +71,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Average path: Common/Model/Animation/AnimationMetaData.cs startLine: 22 @@ -99,8 +99,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimationMetaData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddAverage path: Common/Model/Animation/AnimationMetaData.cs startLine: 26 diff --git a/api/Vintagestory.API.Common.EnumAppSide.yml b/api/Vintagestory.API.Common.EnumAppSide.yml index e82346cf..e1d8d814 100644 --- a/api/Vintagestory.API.Common.EnumAppSide.yml +++ b/api/Vintagestory.API.Common.EnumAppSide.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/API/EnumAppSide.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumAppSide path: Common/API/EnumAppSide.cs startLine: 4 @@ -58,8 +58,8 @@ items: source: remote: path: VintagestoryApi/Common/API/EnumAppSide.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Server path: Common/API/EnumAppSide.cs startLine: 7 @@ -84,8 +84,8 @@ items: source: remote: path: VintagestoryApi/Common/API/EnumAppSide.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Client path: Common/API/EnumAppSide.cs startLine: 8 @@ -110,8 +110,8 @@ items: source: remote: path: VintagestoryApi/Common/API/EnumAppSide.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Universal path: Common/API/EnumAppSide.cs startLine: 9 diff --git a/api/Vintagestory.API.Common.EnumAppSideExtensions.yml b/api/Vintagestory.API.Common.EnumAppSideExtensions.yml index be7f67c6..5977c57f 100644 --- a/api/Vintagestory.API.Common.EnumAppSideExtensions.yml +++ b/api/Vintagestory.API.Common.EnumAppSideExtensions.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/API/EnumAppSide.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumAppSideExtensions path: Common/API/EnumAppSide.cs startLine: 12 @@ -55,8 +55,8 @@ items: source: remote: path: VintagestoryApi/Common/API/EnumAppSide.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsServer path: Common/API/EnumAppSide.cs startLine: 19 @@ -91,8 +91,8 @@ items: source: remote: path: VintagestoryApi/Common/API/EnumAppSide.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsClient path: Common/API/EnumAppSide.cs startLine: 29 @@ -127,8 +127,8 @@ items: source: remote: path: VintagestoryApi/Common/API/EnumAppSide.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsUniversal path: Common/API/EnumAppSide.cs startLine: 39 @@ -163,8 +163,8 @@ items: source: remote: path: VintagestoryApi/Common/API/EnumAppSide.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Is path: Common/API/EnumAppSide.cs startLine: 50 diff --git a/api/Vintagestory.API.Common.EnumBlastType.yml b/api/Vintagestory.API.Common.EnumBlastType.yml index 8cd6608a..b84c848e 100644 --- a/api/Vintagestory.API.Common.EnumBlastType.yml +++ b/api/Vintagestory.API.Common.EnumBlastType.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/Effect/EnumBlastType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumBlastType path: Common/Effect/EnumBlastType.cs startLine: 2 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Common/Effect/EnumBlastType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OreBlast path: Common/Effect/EnumBlastType.cs startLine: 4 @@ -69,8 +69,8 @@ items: source: remote: path: VintagestoryApi/Common/Effect/EnumBlastType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RockBlast path: Common/Effect/EnumBlastType.cs startLine: 5 @@ -95,8 +95,8 @@ items: source: remote: path: VintagestoryApi/Common/Effect/EnumBlastType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityBlast path: Common/Effect/EnumBlastType.cs startLine: 6 diff --git a/api/Vintagestory.API.Common.EnumBlockAccessFlags.yml b/api/Vintagestory.API.Common.EnumBlockAccessFlags.yml index f2069346..62872c14 100644 --- a/api/Vintagestory.API.Common.EnumBlockAccessFlags.yml +++ b/api/Vintagestory.API.Common.EnumBlockAccessFlags.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/API/EnumBlockAccessFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumBlockAccessFlags path: Common/API/EnumBlockAccessFlags.cs startLine: 4 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Common/API/EnumBlockAccessFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: None path: Common/API/EnumBlockAccessFlags.cs startLine: 7 @@ -79,8 +79,8 @@ items: source: remote: path: VintagestoryApi/Common/API/EnumBlockAccessFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BuildOrBreak path: Common/API/EnumBlockAccessFlags.cs startLine: 8 @@ -105,8 +105,8 @@ items: source: remote: path: VintagestoryApi/Common/API/EnumBlockAccessFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Use path: Common/API/EnumBlockAccessFlags.cs startLine: 9 diff --git a/api/Vintagestory.API.Common.EnumBlockMaterial.yml b/api/Vintagestory.API.Common.EnumBlockMaterial.yml index 49ec1a4f..67ce82e5 100644 --- a/api/Vintagestory.API.Common.EnumBlockMaterial.yml +++ b/api/Vintagestory.API.Common.EnumBlockMaterial.yml @@ -37,8 +37,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/EnumBlockMaterial.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumBlockMaterial path: Common/Collectible/Block/EnumBlockMaterial.cs startLine: 9 @@ -67,8 +67,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/EnumBlockMaterial.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Air path: Common/Collectible/Block/EnumBlockMaterial.cs startLine: 11 @@ -93,8 +93,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/EnumBlockMaterial.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Soil path: Common/Collectible/Block/EnumBlockMaterial.cs startLine: 12 @@ -119,8 +119,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/EnumBlockMaterial.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Gravel path: Common/Collectible/Block/EnumBlockMaterial.cs startLine: 13 @@ -145,8 +145,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/EnumBlockMaterial.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sand path: Common/Collectible/Block/EnumBlockMaterial.cs startLine: 14 @@ -171,8 +171,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/EnumBlockMaterial.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Wood path: Common/Collectible/Block/EnumBlockMaterial.cs startLine: 15 @@ -197,8 +197,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/EnumBlockMaterial.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Leaves path: Common/Collectible/Block/EnumBlockMaterial.cs startLine: 16 @@ -223,8 +223,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/EnumBlockMaterial.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Stone path: Common/Collectible/Block/EnumBlockMaterial.cs startLine: 17 @@ -249,8 +249,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/EnumBlockMaterial.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Ore path: Common/Collectible/Block/EnumBlockMaterial.cs startLine: 18 @@ -275,8 +275,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/EnumBlockMaterial.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Liquid path: Common/Collectible/Block/EnumBlockMaterial.cs startLine: 19 @@ -301,8 +301,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/EnumBlockMaterial.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Snow path: Common/Collectible/Block/EnumBlockMaterial.cs startLine: 20 @@ -327,8 +327,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/EnumBlockMaterial.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Ice path: Common/Collectible/Block/EnumBlockMaterial.cs startLine: 21 @@ -353,8 +353,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/EnumBlockMaterial.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Metal path: Common/Collectible/Block/EnumBlockMaterial.cs startLine: 22 @@ -379,8 +379,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/EnumBlockMaterial.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mantle path: Common/Collectible/Block/EnumBlockMaterial.cs startLine: 23 @@ -405,8 +405,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/EnumBlockMaterial.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Plant path: Common/Collectible/Block/EnumBlockMaterial.cs startLine: 24 @@ -431,8 +431,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/EnumBlockMaterial.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Glass path: Common/Collectible/Block/EnumBlockMaterial.cs startLine: 25 @@ -457,8 +457,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/EnumBlockMaterial.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Ceramic path: Common/Collectible/Block/EnumBlockMaterial.cs startLine: 26 @@ -483,8 +483,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/EnumBlockMaterial.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Cloth path: Common/Collectible/Block/EnumBlockMaterial.cs startLine: 27 @@ -509,8 +509,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/EnumBlockMaterial.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Lava path: Common/Collectible/Block/EnumBlockMaterial.cs startLine: 28 @@ -535,8 +535,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/EnumBlockMaterial.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Brick path: Common/Collectible/Block/EnumBlockMaterial.cs startLine: 29 @@ -561,8 +561,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/EnumBlockMaterial.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Fire path: Common/Collectible/Block/EnumBlockMaterial.cs startLine: 30 @@ -587,8 +587,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/EnumBlockMaterial.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Meta path: Common/Collectible/Block/EnumBlockMaterial.cs startLine: 31 @@ -613,8 +613,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/EnumBlockMaterial.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Other path: Common/Collectible/Block/EnumBlockMaterial.cs startLine: 32 diff --git a/api/Vintagestory.API.Common.EnumCallerType.yml b/api/Vintagestory.API.Common.EnumCallerType.yml index fff294ce..d7b118fb 100644 --- a/api/Vintagestory.API.Common.EnumCallerType.yml +++ b/api/Vintagestory.API.Common.EnumCallerType.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumCallerType path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 51 @@ -45,8 +45,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Player path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 53 @@ -71,8 +71,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Entity path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 54 @@ -97,8 +97,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Block path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 55 @@ -123,8 +123,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Console path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 56 @@ -149,8 +149,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Unknown path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 57 diff --git a/api/Vintagestory.API.Common.EnumCharacterDressType.yml b/api/Vintagestory.API.Common.EnumCharacterDressType.yml index b67f119d..221c42b6 100644 --- a/api/Vintagestory.API.Common.EnumCharacterDressType.yml +++ b/api/Vintagestory.API.Common.EnumCharacterDressType.yml @@ -31,8 +31,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotCharacter.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumCharacterDressType path: Common/Inventory/ItemSlotCharacter.cs startLine: 4 @@ -56,8 +56,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotCharacter.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Unknown path: Common/Inventory/ItemSlotCharacter.cs startLine: 6 @@ -82,8 +82,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotCharacter.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Head path: Common/Inventory/ItemSlotCharacter.cs startLine: 7 @@ -108,8 +108,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotCharacter.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Shoulder path: Common/Inventory/ItemSlotCharacter.cs startLine: 8 @@ -134,8 +134,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotCharacter.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UpperBody path: Common/Inventory/ItemSlotCharacter.cs startLine: 9 @@ -160,8 +160,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotCharacter.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UpperBodyOver path: Common/Inventory/ItemSlotCharacter.cs startLine: 10 @@ -186,8 +186,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotCharacter.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LowerBody path: Common/Inventory/ItemSlotCharacter.cs startLine: 11 @@ -212,8 +212,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotCharacter.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Foot path: Common/Inventory/ItemSlotCharacter.cs startLine: 12 @@ -238,8 +238,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotCharacter.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Neck path: Common/Inventory/ItemSlotCharacter.cs startLine: 14 @@ -264,8 +264,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotCharacter.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Emblem path: Common/Inventory/ItemSlotCharacter.cs startLine: 15 @@ -290,8 +290,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotCharacter.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Face path: Common/Inventory/ItemSlotCharacter.cs startLine: 16 @@ -316,8 +316,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotCharacter.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Arm path: Common/Inventory/ItemSlotCharacter.cs startLine: 17 @@ -342,8 +342,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotCharacter.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Hand path: Common/Inventory/ItemSlotCharacter.cs startLine: 18 @@ -368,8 +368,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotCharacter.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Waist path: Common/Inventory/ItemSlotCharacter.cs startLine: 19 @@ -394,8 +394,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotCharacter.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ArmorHead path: Common/Inventory/ItemSlotCharacter.cs startLine: 21 @@ -420,8 +420,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotCharacter.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ArmorBody path: Common/Inventory/ItemSlotCharacter.cs startLine: 22 @@ -446,8 +446,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotCharacter.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ArmorLegs path: Common/Inventory/ItemSlotCharacter.cs startLine: 23 diff --git a/api/Vintagestory.API.Common.EnumChatType.yml b/api/Vintagestory.API.Common.EnumChatType.yml index 3d3b2ba1..22f9fd2e 100644 --- a/api/Vintagestory.API.Common.EnumChatType.yml +++ b/api/Vintagestory.API.Common.EnumChatType.yml @@ -24,8 +24,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/EnumChatType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumChatType path: Common/Text/EnumChatType.cs startLine: 5 @@ -51,8 +51,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/EnumChatType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CommandSuccess path: Common/Text/EnumChatType.cs startLine: 10 @@ -79,8 +79,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/EnumChatType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CommandError path: Common/Text/EnumChatType.cs startLine: 15 @@ -107,8 +107,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/EnumChatType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OwnMessage path: Common/Text/EnumChatType.cs startLine: 20 @@ -135,8 +135,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/EnumChatType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OthersMessage path: Common/Text/EnumChatType.cs startLine: 25 @@ -163,8 +163,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/EnumChatType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Notification path: Common/Text/EnumChatType.cs startLine: 30 @@ -191,8 +191,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/EnumChatType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AllGroups path: Common/Text/EnumChatType.cs startLine: 35 @@ -219,8 +219,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/EnumChatType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GroupInvite path: Common/Text/EnumChatType.cs startLine: 40 @@ -247,8 +247,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/EnumChatType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: JoinLeave path: Common/Text/EnumChatType.cs startLine: 45 @@ -275,8 +275,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/EnumChatType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Macro path: Common/Text/EnumChatType.cs startLine: 50 diff --git a/api/Vintagestory.API.Common.EnumChunkDirtyReason.yml b/api/Vintagestory.API.Common.EnumChunkDirtyReason.yml index 034c4033..cb6fbcac 100644 --- a/api/Vintagestory.API.Common.EnumChunkDirtyReason.yml +++ b/api/Vintagestory.API.Common.EnumChunkDirtyReason.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumChunkDirtyReason path: Common/API/IEventAPI.cs startLine: 15 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NewlyCreated path: Common/API/IEventAPI.cs startLine: 17 @@ -69,8 +69,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NewlyLoaded path: Common/API/IEventAPI.cs startLine: 18 @@ -95,8 +95,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MarkedDirty path: Common/API/IEventAPI.cs startLine: 19 diff --git a/api/Vintagestory.API.Common.EnumClaimError.yml b/api/Vintagestory.API.Common.EnumClaimError.yml index 129ca1a9..e1093635 100644 --- a/api/Vintagestory.API.Common.EnumClaimError.yml +++ b/api/Vintagestory.API.Common.EnumClaimError.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumClaimError path: Common/LandClaim.cs startLine: 15 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NoError path: Common/LandClaim.cs startLine: 17 @@ -69,8 +69,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NotAdjacent path: Common/LandClaim.cs startLine: 18 @@ -95,8 +95,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Overlapping path: Common/LandClaim.cs startLine: 19 diff --git a/api/Vintagestory.API.Common.EnumCommandStatus.yml b/api/Vintagestory.API.Common.EnumCommandStatus.yml index 646d2126..7b215eae 100644 --- a/api/Vintagestory.API.Common.EnumCommandStatus.yml +++ b/api/Vintagestory.API.Common.EnumCommandStatus.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumCommandStatus path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 151 @@ -45,8 +45,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NoSuchCommand path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 153 @@ -71,8 +71,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Success path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 154 @@ -97,8 +97,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Deferred path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 158 @@ -125,8 +125,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Error path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 162 @@ -153,8 +153,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UnknownLegacy path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 166 diff --git a/api/Vintagestory.API.Common.EnumDamageSource.yml b/api/Vintagestory.API.Common.EnumDamageSource.yml index dc3910d1..1a694e3b 100644 --- a/api/Vintagestory.API.Common.EnumDamageSource.yml +++ b/api/Vintagestory.API.Common.EnumDamageSource.yml @@ -28,8 +28,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDamageSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumDamageSource path: Common/Combat/EnumDamageSource.cs startLine: 2 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDamageSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Block path: Common/Combat/EnumDamageSource.cs startLine: 7 @@ -81,8 +81,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDamageSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Player path: Common/Combat/EnumDamageSource.cs startLine: 12 @@ -109,8 +109,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDamageSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Fall path: Common/Combat/EnumDamageSource.cs startLine: 17 @@ -137,8 +137,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDamageSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drown path: Common/Combat/EnumDamageSource.cs startLine: 22 @@ -165,8 +165,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDamageSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Revive path: Common/Combat/EnumDamageSource.cs startLine: 27 @@ -193,8 +193,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDamageSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Void path: Common/Combat/EnumDamageSource.cs startLine: 32 @@ -221,8 +221,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDamageSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Suicide path: Common/Combat/EnumDamageSource.cs startLine: 37 @@ -249,8 +249,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDamageSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Internal path: Common/Combat/EnumDamageSource.cs startLine: 42 @@ -277,8 +277,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDamageSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Entity path: Common/Combat/EnumDamageSource.cs startLine: 47 @@ -305,8 +305,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDamageSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Explosion path: Common/Combat/EnumDamageSource.cs startLine: 52 @@ -333,8 +333,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDamageSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Machine path: Common/Combat/EnumDamageSource.cs startLine: 54 @@ -359,8 +359,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDamageSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Unknown path: Common/Combat/EnumDamageSource.cs startLine: 59 @@ -387,8 +387,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDamageSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Weather path: Common/Combat/EnumDamageSource.cs startLine: 61 diff --git a/api/Vintagestory.API.Common.EnumDamageType.yml b/api/Vintagestory.API.Common.EnumDamageType.yml index b79f08ef..3bebdd55 100644 --- a/api/Vintagestory.API.Common.EnumDamageType.yml +++ b/api/Vintagestory.API.Common.EnumDamageType.yml @@ -29,8 +29,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDamageType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumDamageType path: Common/Combat/EnumDamageType.cs startLine: 2 @@ -54,8 +54,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDamageType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Gravity path: Common/Combat/EnumDamageType.cs startLine: 4 @@ -80,8 +80,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDamageType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Fire path: Common/Combat/EnumDamageType.cs startLine: 5 @@ -106,8 +106,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDamageType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BluntAttack path: Common/Combat/EnumDamageType.cs startLine: 6 @@ -132,8 +132,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDamageType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SlashingAttack path: Common/Combat/EnumDamageType.cs startLine: 7 @@ -158,8 +158,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDamageType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PiercingAttack path: Common/Combat/EnumDamageType.cs startLine: 8 @@ -184,8 +184,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDamageType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Suffocation path: Common/Combat/EnumDamageType.cs startLine: 9 @@ -210,8 +210,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDamageType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Heal path: Common/Combat/EnumDamageType.cs startLine: 10 @@ -236,8 +236,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDamageType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Poison path: Common/Combat/EnumDamageType.cs startLine: 11 @@ -262,8 +262,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDamageType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Hunger path: Common/Combat/EnumDamageType.cs startLine: 12 @@ -288,8 +288,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDamageType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Crushing path: Common/Combat/EnumDamageType.cs startLine: 13 @@ -314,8 +314,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDamageType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Frost path: Common/Combat/EnumDamageType.cs startLine: 14 @@ -340,8 +340,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDamageType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Electricity path: Common/Combat/EnumDamageType.cs startLine: 15 @@ -366,8 +366,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDamageType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Heat path: Common/Combat/EnumDamageType.cs startLine: 16 @@ -392,8 +392,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDamageType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Injury path: Common/Combat/EnumDamageType.cs startLine: 17 diff --git a/api/Vintagestory.API.Common.EnumDataType.yml b/api/Vintagestory.API.Common.EnumDataType.yml index 35ce7f27..36113a88 100644 --- a/api/Vintagestory.API.Common.EnumDataType.yml +++ b/api/Vintagestory.API.Common.EnumDataType.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/WorldConfiguration.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumDataType path: Common/Playstyle/WorldConfiguration.cs startLine: 12 @@ -46,8 +46,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/WorldConfiguration.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Bool path: Common/Playstyle/WorldConfiguration.cs startLine: 14 @@ -72,8 +72,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/WorldConfiguration.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IntInput path: Common/Playstyle/WorldConfiguration.cs startLine: 14 @@ -98,8 +98,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/WorldConfiguration.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DoubleInput path: Common/Playstyle/WorldConfiguration.cs startLine: 14 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/WorldConfiguration.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IntRange path: Common/Playstyle/WorldConfiguration.cs startLine: 14 @@ -150,8 +150,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/WorldConfiguration.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: String path: Common/Playstyle/WorldConfiguration.cs startLine: 14 @@ -176,8 +176,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/WorldConfiguration.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DropDown path: Common/Playstyle/WorldConfiguration.cs startLine: 14 diff --git a/api/Vintagestory.API.Common.EnumDeathCause.yml b/api/Vintagestory.API.Common.EnumDeathCause.yml index cd4d1b1d..c41f77f1 100644 --- a/api/Vintagestory.API.Common.EnumDeathCause.yml +++ b/api/Vintagestory.API.Common.EnumDeathCause.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDeathReason.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumDeathCause path: Common/Combat/EnumDeathReason.cs startLine: 2 @@ -46,8 +46,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDeathReason.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FallDamage path: Common/Combat/EnumDeathReason.cs startLine: 7 @@ -74,8 +74,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDeathReason.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockDamage path: Common/Combat/EnumDeathReason.cs startLine: 12 @@ -102,8 +102,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDeathReason.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drowning path: Common/Combat/EnumDeathReason.cs startLine: 17 @@ -130,8 +130,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDeathReason.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Explosion path: Common/Combat/EnumDeathReason.cs startLine: 22 @@ -158,8 +158,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDeathReason.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Injury path: Common/Combat/EnumDeathReason.cs startLine: 27 @@ -186,8 +186,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDeathReason.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Unknown path: Common/Combat/EnumDeathReason.cs startLine: 32 diff --git a/api/Vintagestory.API.Common.EnumDespawnReason.yml b/api/Vintagestory.API.Common.EnumDespawnReason.yml index bf58f56b..cfe2cefa 100644 --- a/api/Vintagestory.API.Common.EnumDespawnReason.yml +++ b/api/Vintagestory.API.Common.EnumDespawnReason.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDespawnReason.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumDespawnReason path: Common/Combat/EnumDespawnReason.cs startLine: 2 @@ -48,8 +48,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDespawnReason.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Death path: Common/Combat/EnumDespawnReason.cs startLine: 7 @@ -76,8 +76,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDespawnReason.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Combusted path: Common/Combat/EnumDespawnReason.cs startLine: 12 @@ -104,8 +104,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDespawnReason.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OutOfRange path: Common/Combat/EnumDespawnReason.cs startLine: 17 @@ -132,8 +132,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDespawnReason.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PickedUp path: Common/Combat/EnumDespawnReason.cs startLine: 22 @@ -160,8 +160,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDespawnReason.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Unload path: Common/Combat/EnumDespawnReason.cs startLine: 27 @@ -188,8 +188,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDespawnReason.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Disconnect path: Common/Combat/EnumDespawnReason.cs startLine: 32 @@ -216,8 +216,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDespawnReason.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Expire path: Common/Combat/EnumDespawnReason.cs startLine: 37 @@ -244,8 +244,8 @@ items: source: remote: path: VintagestoryApi/Common/Combat/EnumDespawnReason.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Removed path: Common/Combat/EnumDespawnReason.cs startLine: 42 diff --git a/api/Vintagestory.API.Common.EnumEntityAction.yml b/api/Vintagestory.API.Common.EnumEntityAction.yml index 178c7407..1518a298 100644 --- a/api/Vintagestory.API.Common.EnumEntityAction.yml +++ b/api/Vintagestory.API.Common.EnumEntityAction.yml @@ -33,8 +33,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumEntityAction path: Common/Entity/EntityControls.cs startLine: 13 @@ -60,8 +60,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: None path: Common/Entity/EntityControls.cs startLine: 18 @@ -88,8 +88,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Forward path: Common/Entity/EntityControls.cs startLine: 22 @@ -116,8 +116,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Backward path: Common/Entity/EntityControls.cs startLine: 26 @@ -144,8 +144,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Left path: Common/Entity/EntityControls.cs startLine: 30 @@ -172,8 +172,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Right path: Common/Entity/EntityControls.cs startLine: 34 @@ -200,8 +200,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Jump path: Common/Entity/EntityControls.cs startLine: 38 @@ -228,8 +228,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sneak path: Common/Entity/EntityControls.cs startLine: 42 @@ -256,8 +256,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sprint path: Common/Entity/EntityControls.cs startLine: 46 @@ -284,8 +284,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Glide path: Common/Entity/EntityControls.cs startLine: 50 @@ -312,8 +312,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FloorSit path: Common/Entity/EntityControls.cs startLine: 54 @@ -340,8 +340,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LeftMouseDown path: Common/Entity/EntityControls.cs startLine: 58 @@ -368,8 +368,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RightMouseDown path: Common/Entity/EntityControls.cs startLine: 62 @@ -396,8 +396,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Up path: Common/Entity/EntityControls.cs startLine: 66 @@ -424,8 +424,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Down path: Common/Entity/EntityControls.cs startLine: 70 @@ -452,8 +452,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CtrlKey path: Common/Entity/EntityControls.cs startLine: 74 @@ -480,8 +480,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShiftKey path: Common/Entity/EntityControls.cs startLine: 78 @@ -508,8 +508,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InWorldLeftMouseDown path: Common/Entity/EntityControls.cs startLine: 82 @@ -536,8 +536,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InWorldRightMouseDown path: Common/Entity/EntityControls.cs startLine: 86 diff --git a/api/Vintagestory.API.Common.EnumEntityActivityStoppedHandling.yml b/api/Vintagestory.API.Common.EnumEntityActivityStoppedHandling.yml index 0f633c17..7dce4bc1 100644 --- a/api/Vintagestory.API.Common.EnumEntityActivityStoppedHandling.yml +++ b/api/Vintagestory.API.Common.EnumEntityActivityStoppedHandling.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/Animation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumEntityActivityStoppedHandling path: Common/Model/Animation/Animation.cs startLine: 9 @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/Animation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayTillEnd path: Common/Model/Animation/Animation.cs startLine: 11 @@ -70,8 +70,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/Animation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rewind path: Common/Model/Animation/Animation.cs startLine: 12 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/Animation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Stop path: Common/Model/Animation/Animation.cs startLine: 13 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/Animation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EaseOut path: Common/Model/Animation/Animation.cs startLine: 14 diff --git a/api/Vintagestory.API.Common.EnumEntityAnimationEndHandling.yml b/api/Vintagestory.API.Common.EnumEntityAnimationEndHandling.yml index 1c3c9974..11fd550f 100644 --- a/api/Vintagestory.API.Common.EnumEntityAnimationEndHandling.yml +++ b/api/Vintagestory.API.Common.EnumEntityAnimationEndHandling.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/Animation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumEntityAnimationEndHandling path: Common/Model/Animation/Animation.cs startLine: 17 @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/Animation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Repeat path: Common/Model/Animation/Animation.cs startLine: 19 @@ -70,8 +70,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/Animation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Hold path: Common/Model/Animation/Animation.cs startLine: 20 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/Animation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Stop path: Common/Model/Animation/Animation.cs startLine: 21 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/Animation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EaseOut path: Common/Model/Animation/Animation.cs startLine: 22 diff --git a/api/Vintagestory.API.Common.EnumEntityState.yml b/api/Vintagestory.API.Common.EnumEntityState.yml index d4f27c84..9ae726ae 100644 --- a/api/Vintagestory.API.Common.EnumEntityState.yml +++ b/api/Vintagestory.API.Common.EnumEntityState.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EnumEntityState.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumEntityState path: Common/Entity/EnumEntityState.cs startLine: 2 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EnumEntityState.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Active path: Common/Entity/EnumEntityState.cs startLine: 4 @@ -69,8 +69,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EnumEntityState.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Inactive path: Common/Entity/EnumEntityState.cs startLine: 5 @@ -95,8 +95,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EnumEntityState.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Despawned path: Common/Entity/EnumEntityState.cs startLine: 6 diff --git a/api/Vintagestory.API.Common.EnumFoodCategory.yml b/api/Vintagestory.API.Common.EnumFoodCategory.yml index d5e81f97..61702ae6 100644 --- a/api/Vintagestory.API.Common.EnumFoodCategory.yml +++ b/api/Vintagestory.API.Common.EnumFoodCategory.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/NutritionProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumFoodCategory path: Common/Collectible/NutritionProperties.cs startLine: 4 @@ -47,8 +47,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/NutritionProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NoNutrition path: Common/Collectible/NutritionProperties.cs startLine: 6 @@ -73,8 +73,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/NutritionProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Fruit path: Common/Collectible/NutritionProperties.cs startLine: 7 @@ -99,8 +99,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/NutritionProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Vegetable path: Common/Collectible/NutritionProperties.cs startLine: 8 @@ -125,8 +125,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/NutritionProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Protein path: Common/Collectible/NutritionProperties.cs startLine: 9 @@ -151,8 +151,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/NutritionProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Grain path: Common/Collectible/NutritionProperties.cs startLine: 10 @@ -177,8 +177,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/NutritionProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dairy path: Common/Collectible/NutritionProperties.cs startLine: 11 @@ -203,8 +203,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/NutritionProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Unknown path: Common/Collectible/NutritionProperties.cs startLine: 12 diff --git a/api/Vintagestory.API.Common.EnumFreeMovAxisLock.yml b/api/Vintagestory.API.Common.EnumFreeMovAxisLock.yml index a49e2fc0..a4254110 100644 --- a/api/Vintagestory.API.Common.EnumFreeMovAxisLock.yml +++ b/api/Vintagestory.API.Common.EnumFreeMovAxisLock.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/Controls/EnumLockFlyPlaneMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumFreeMovAxisLock path: Common/Controls/EnumLockFlyPlaneMode.cs startLine: 2 @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Common/Controls/EnumLockFlyPlaneMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: None path: Common/Controls/EnumLockFlyPlaneMode.cs startLine: 4 @@ -70,8 +70,8 @@ items: source: remote: path: VintagestoryApi/Common/Controls/EnumLockFlyPlaneMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X path: Common/Controls/EnumLockFlyPlaneMode.cs startLine: 5 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Common/Controls/EnumLockFlyPlaneMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y path: Common/Controls/EnumLockFlyPlaneMode.cs startLine: 6 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Common/Controls/EnumLockFlyPlaneMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Z path: Common/Controls/EnumLockFlyPlaneMode.cs startLine: 7 diff --git a/api/Vintagestory.API.Common.EnumGameMode.yml b/api/Vintagestory.API.Common.EnumGameMode.yml index fac48431..1a7cf072 100644 --- a/api/Vintagestory.API.Common.EnumGameMode.yml +++ b/api/Vintagestory.API.Common.EnumGameMode.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/EnumGameMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumGameMode path: Common/Entity/Player/EnumGameMode.cs startLine: 5 @@ -46,8 +46,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/EnumGameMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Guest path: Common/Entity/Player/EnumGameMode.cs startLine: 10 @@ -74,8 +74,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/EnumGameMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Survival path: Common/Entity/Player/EnumGameMode.cs startLine: 14 @@ -102,8 +102,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/EnumGameMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Creative path: Common/Entity/Player/EnumGameMode.cs startLine: 18 @@ -130,8 +130,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/EnumGameMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Spectator path: Common/Entity/Player/EnumGameMode.cs startLine: 22 diff --git a/api/Vintagestory.API.Common.EnumGetClimateMode.yml b/api/Vintagestory.API.Common.EnumGetClimateMode.yml index c9fb378b..2f7018a3 100644 --- a/api/Vintagestory.API.Common.EnumGetClimateMode.yml +++ b/api/Vintagestory.API.Common.EnumGetClimateMode.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumGetClimateMode path: Common/API/IBlockAccessor.cs startLine: 796 @@ -47,8 +47,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WorldGenValues path: Common/API/IBlockAccessor.cs startLine: 801 @@ -75,8 +75,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NowValues path: Common/API/IBlockAccessor.cs startLine: 805 @@ -103,8 +103,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ForSuppliedDateValues path: Common/API/IBlockAccessor.cs startLine: 809 @@ -131,8 +131,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ForSuppliedDate_TemperatureOnly path: Common/API/IBlockAccessor.cs startLine: 813 @@ -159,8 +159,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ForSuppliedDate_TemperatureRainfallOnly path: Common/API/IBlockAccessor.cs startLine: 817 diff --git a/api/Vintagestory.API.Common.EnumHabitat.yml b/api/Vintagestory.API.Common.EnumHabitat.yml index 14a1c659..98ca43a3 100644 --- a/api/Vintagestory.API.Common.EnumHabitat.yml +++ b/api/Vintagestory.API.Common.EnumHabitat.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EnumHabitat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumHabitat path: Common/Entity/EnumHabitat.cs startLine: 2 @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EnumHabitat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sea path: Common/Entity/EnumHabitat.cs startLine: 4 @@ -70,8 +70,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EnumHabitat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Land path: Common/Entity/EnumHabitat.cs startLine: 5 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EnumHabitat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Air path: Common/Entity/EnumHabitat.cs startLine: 6 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EnumHabitat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Underwater path: Common/Entity/EnumHabitat.cs startLine: 7 diff --git a/api/Vintagestory.API.Common.EnumHand.yml b/api/Vintagestory.API.Common.EnumHand.yml index dc52f0f9..c8c412ae 100644 --- a/api/Vintagestory.API.Common.EnumHand.yml +++ b/api/Vintagestory.API.Common.EnumHand.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumHand path: Common/Entity/EntityAgent.cs startLine: 11 @@ -42,8 +42,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Left path: Common/Entity/EntityAgent.cs startLine: 13 @@ -68,8 +68,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Right path: Common/Entity/EntityAgent.cs startLine: 14 diff --git a/api/Vintagestory.API.Common.EnumHandHandling.yml b/api/Vintagestory.API.Common.EnumHandHandling.yml index dd04929a..3e32f817 100644 --- a/api/Vintagestory.API.Common.EnumHandHandling.yml +++ b/api/Vintagestory.API.Common.EnumHandHandling.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/EnumHandHandling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumHandHandling path: Common/Entity/Player/EnumHandHandling.cs startLine: 5 @@ -47,8 +47,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/EnumHandHandling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NotHandled path: Common/Entity/Player/EnumHandHandling.cs startLine: 10 @@ -75,8 +75,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/EnumHandHandling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Handled path: Common/Entity/Player/EnumHandHandling.cs startLine: 15 @@ -106,8 +106,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/EnumHandHandling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreventDefaultAnimation path: Common/Entity/Player/EnumHandHandling.cs startLine: 19 @@ -134,8 +134,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/EnumHandHandling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreventDefaultAction path: Common/Entity/Player/EnumHandHandling.cs startLine: 23 @@ -162,8 +162,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/EnumHandHandling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreventDefault path: Common/Entity/Player/EnumHandHandling.cs startLine: 27 diff --git a/api/Vintagestory.API.Common.EnumHandInteract.yml b/api/Vintagestory.API.Common.EnumHandInteract.yml index 6cfae446..fb7fd815 100644 --- a/api/Vintagestory.API.Common.EnumHandInteract.yml +++ b/api/Vintagestory.API.Common.EnumHandInteract.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/EnumHandHandling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumHandInteract path: Common/Entity/Player/EnumHandHandling.cs startLine: 30 @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/EnumHandHandling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: None path: Common/Entity/Player/EnumHandHandling.cs startLine: 32 @@ -70,8 +70,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/EnumHandHandling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HeldItemAttack path: Common/Entity/Player/EnumHandHandling.cs startLine: 33 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/EnumHandHandling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HeldItemInteract path: Common/Entity/Player/EnumHandHandling.cs startLine: 34 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/EnumHandHandling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockInteract path: Common/Entity/Player/EnumHandHandling.cs startLine: 35 diff --git a/api/Vintagestory.API.Common.EnumHandling.yml b/api/Vintagestory.API.Common.EnumHandling.yml index 5eccfe38..df5cb1fa 100644 --- a/api/Vintagestory.API.Common.EnumHandling.yml +++ b/api/Vintagestory.API.Common.EnumHandling.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/EnumHandling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumHandling path: Common/EnumHandling.cs startLine: 5 @@ -46,8 +46,8 @@ items: source: remote: path: VintagestoryApi/Common/EnumHandling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PassThrough path: Common/EnumHandling.cs startLine: 10 @@ -74,8 +74,8 @@ items: source: remote: path: VintagestoryApi/Common/EnumHandling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Handled path: Common/EnumHandling.cs startLine: 14 @@ -102,8 +102,8 @@ items: source: remote: path: VintagestoryApi/Common/EnumHandling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreventDefault path: Common/EnumHandling.cs startLine: 18 @@ -130,8 +130,8 @@ items: source: remote: path: VintagestoryApi/Common/EnumHandling.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreventSubsequent path: Common/EnumHandling.cs startLine: 22 diff --git a/api/Vintagestory.API.Common.EnumHemisphere.yml b/api/Vintagestory.API.Common.EnumHemisphere.yml index 9de02de0..5e430ad1 100644 --- a/api/Vintagestory.API.Common.EnumHemisphere.yml +++ b/api/Vintagestory.API.Common.EnumHemisphere.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumHemisphere path: Common/API/IGameCalendar.cs startLine: 40 @@ -42,8 +42,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: North path: Common/API/IGameCalendar.cs startLine: 42 @@ -68,8 +68,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: South path: Common/API/IGameCalendar.cs startLine: 43 diff --git a/api/Vintagestory.API.Common.EnumHighlightShape.yml b/api/Vintagestory.API.Common.EnumHighlightShape.yml index e220dedb..5a30dfde 100644 --- a/api/Vintagestory.API.Common.EnumHighlightShape.yml +++ b/api/Vintagestory.API.Common.EnumHighlightShape.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/EnumHighlightShape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumHighlightShape path: Common/EnumHighlightShape.cs startLine: 2 @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Common/EnumHighlightShape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Arbitrary path: Common/EnumHighlightShape.cs startLine: 4 @@ -70,8 +70,8 @@ items: source: remote: path: VintagestoryApi/Common/EnumHighlightShape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Cube path: Common/EnumHighlightShape.cs startLine: 5 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Common/EnumHighlightShape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Ball path: Common/EnumHighlightShape.cs startLine: 6 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Common/EnumHighlightShape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Cubes path: Common/EnumHighlightShape.cs startLine: 7 diff --git a/api/Vintagestory.API.Common.EnumHighlightSlot.yml b/api/Vintagestory.API.Common.EnumHighlightSlot.yml index f789c66c..5f05149b 100644 --- a/api/Vintagestory.API.Common.EnumHighlightSlot.yml +++ b/api/Vintagestory.API.Common.EnumHighlightSlot.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumHighlightSlot path: Common/API/IWorldAccessor.cs startLine: 9 @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Selection path: Common/API/IWorldAccessor.cs startLine: 11 @@ -70,8 +70,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Brush path: Common/API/IWorldAccessor.cs startLine: 12 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Spawner path: Common/API/IWorldAccessor.cs startLine: 13 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LandClaim path: Common/API/IWorldAccessor.cs startLine: 14 diff --git a/api/Vintagestory.API.Common.EnumInteractMode.yml b/api/Vintagestory.API.Common.EnumInteractMode.yml index 6e2546b7..ec24b7e9 100644 --- a/api/Vintagestory.API.Common.EnumInteractMode.yml +++ b/api/Vintagestory.API.Common.EnumInteractMode.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EnumInteractMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumInteractMode path: Common/Entity/EnumInteractMode.cs startLine: 2 @@ -42,8 +42,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EnumInteractMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Attack path: Common/Entity/EnumInteractMode.cs startLine: 4 @@ -68,8 +68,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EnumInteractMode.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Interact path: Common/Entity/EnumInteractMode.cs startLine: 5 diff --git a/api/Vintagestory.API.Common.EnumItemClass.yml b/api/Vintagestory.API.Common.EnumItemClass.yml index 6d32868e..6d343d88 100644 --- a/api/Vintagestory.API.Common.EnumItemClass.yml +++ b/api/Vintagestory.API.Common.EnumItemClass.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumItemClass.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumItemClass path: Common/Collectible/EnumItemClass.cs startLine: 2 @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumItemClass.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Block path: Common/Collectible/EnumItemClass.cs startLine: 4 @@ -70,8 +70,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumItemClass.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Item path: Common/Collectible/EnumItemClass.cs startLine: 5 diff --git a/api/Vintagestory.API.Common.EnumItemDamageSource.yml b/api/Vintagestory.API.Common.EnumItemDamageSource.yml index 882d6073..a15b2d24 100644 --- a/api/Vintagestory.API.Common.EnumItemDamageSource.yml +++ b/api/Vintagestory.API.Common.EnumItemDamageSource.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/EnumItemDamageSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumItemDamageSource path: Common/Collectible/Item/EnumItemDamageSource.cs startLine: 2 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/EnumItemDamageSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockBreaking path: Common/Collectible/Item/EnumItemDamageSource.cs startLine: 7 @@ -71,8 +71,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/EnumItemDamageSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Attacking path: Common/Collectible/Item/EnumItemDamageSource.cs startLine: 12 @@ -99,8 +99,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/EnumItemDamageSource.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Fire path: Common/Collectible/Item/EnumItemDamageSource.cs startLine: 17 diff --git a/api/Vintagestory.API.Common.EnumItemStorageFlags.yml b/api/Vintagestory.API.Common.EnumItemStorageFlags.yml index 35cc0324..fcc6be01 100644 --- a/api/Vintagestory.API.Common.EnumItemStorageFlags.yml +++ b/api/Vintagestory.API.Common.EnumItemStorageFlags.yml @@ -36,8 +36,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/EnumItemStorageFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumItemStorageFlags path: Common/Collectible/Item/EnumItemStorageFlags.cs startLine: 8 @@ -73,8 +73,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/EnumItemStorageFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: General path: Common/Collectible/Item/EnumItemStorageFlags.cs startLine: 14 @@ -101,8 +101,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/EnumItemStorageFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Backpack path: Common/Collectible/Item/EnumItemStorageFlags.cs startLine: 18 @@ -129,8 +129,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/EnumItemStorageFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Metallurgy path: Common/Collectible/Item/EnumItemStorageFlags.cs startLine: 22 @@ -157,8 +157,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/EnumItemStorageFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Jewellery path: Common/Collectible/Item/EnumItemStorageFlags.cs startLine: 26 @@ -185,8 +185,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/EnumItemStorageFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Alchemy path: Common/Collectible/Item/EnumItemStorageFlags.cs startLine: 30 @@ -213,8 +213,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/EnumItemStorageFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Agriculture path: Common/Collectible/Item/EnumItemStorageFlags.cs startLine: 34 @@ -241,8 +241,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/EnumItemStorageFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Currency path: Common/Collectible/Item/EnumItemStorageFlags.cs startLine: 38 @@ -269,8 +269,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/EnumItemStorageFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Outfit path: Common/Collectible/Item/EnumItemStorageFlags.cs startLine: 42 @@ -297,8 +297,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/EnumItemStorageFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Offhand path: Common/Collectible/Item/EnumItemStorageFlags.cs startLine: 46 @@ -325,8 +325,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/EnumItemStorageFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Arrow path: Common/Collectible/Item/EnumItemStorageFlags.cs startLine: 50 @@ -353,8 +353,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/EnumItemStorageFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Reserved2 path: Common/Collectible/Item/EnumItemStorageFlags.cs startLine: 54 @@ -381,8 +381,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/EnumItemStorageFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Custom1 path: Common/Collectible/Item/EnumItemStorageFlags.cs startLine: 58 @@ -409,8 +409,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/EnumItemStorageFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Custom2 path: Common/Collectible/Item/EnumItemStorageFlags.cs startLine: 62 @@ -437,8 +437,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/EnumItemStorageFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Custom3 path: Common/Collectible/Item/EnumItemStorageFlags.cs startLine: 66 @@ -465,8 +465,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/EnumItemStorageFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Custom4 path: Common/Collectible/Item/EnumItemStorageFlags.cs startLine: 70 @@ -493,8 +493,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/EnumItemStorageFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Custom5 path: Common/Collectible/Item/EnumItemStorageFlags.cs startLine: 74 @@ -521,8 +521,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/EnumItemStorageFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Custom6 path: Common/Collectible/Item/EnumItemStorageFlags.cs startLine: 78 @@ -549,8 +549,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/EnumItemStorageFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Custom7 path: Common/Collectible/Item/EnumItemStorageFlags.cs startLine: 82 @@ -577,8 +577,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/EnumItemStorageFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Custom8 path: Common/Collectible/Item/EnumItemStorageFlags.cs startLine: 86 @@ -605,8 +605,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/EnumItemStorageFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Custom9 path: Common/Collectible/Item/EnumItemStorageFlags.cs startLine: 90 @@ -633,8 +633,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/EnumItemStorageFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Custom10 path: Common/Collectible/Item/EnumItemStorageFlags.cs startLine: 94 diff --git a/api/Vintagestory.API.Common.EnumItemUseCancelReason.yml b/api/Vintagestory.API.Common.EnumItemUseCancelReason.yml index 6f5e6354..e99286d1 100644 --- a/api/Vintagestory.API.Common.EnumItemUseCancelReason.yml +++ b/api/Vintagestory.API.Common.EnumItemUseCancelReason.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumItemUseCancelReason.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumItemUseCancelReason path: Common/Collectible/EnumItemUseCancelReason.cs startLine: 2 @@ -46,8 +46,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumItemUseCancelReason.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReleasedMouse path: Common/Collectible/EnumItemUseCancelReason.cs startLine: 4 @@ -72,8 +72,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumItemUseCancelReason.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dropped path: Common/Collectible/EnumItemUseCancelReason.cs startLine: 5 @@ -98,8 +98,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumItemUseCancelReason.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChangeSlot path: Common/Collectible/EnumItemUseCancelReason.cs startLine: 6 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumItemUseCancelReason.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MovedAway path: Common/Collectible/EnumItemUseCancelReason.cs startLine: 7 @@ -150,8 +150,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumItemUseCancelReason.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Death path: Common/Collectible/EnumItemUseCancelReason.cs startLine: 8 @@ -176,8 +176,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumItemUseCancelReason.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Destroyed path: Common/Collectible/EnumItemUseCancelReason.cs startLine: 9 diff --git a/api/Vintagestory.API.Common.EnumLightLevelType.yml b/api/Vintagestory.API.Common.EnumLightLevelType.yml index 5f113609..0ac43d00 100644 --- a/api/Vintagestory.API.Common.EnumLightLevelType.yml +++ b/api/Vintagestory.API.Common.EnumLightLevelType.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumLightLevelType path: Common/API/IBlockAccessor.cs startLine: 118 @@ -47,8 +47,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnlyBlockLight path: Common/API/IBlockAccessor.cs startLine: 123 @@ -75,8 +75,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnlySunLight path: Common/API/IBlockAccessor.cs startLine: 127 @@ -103,8 +103,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxLight path: Common/API/IBlockAccessor.cs startLine: 131 @@ -131,8 +131,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxTimeOfDayLight path: Common/API/IBlockAccessor.cs startLine: 135 @@ -159,8 +159,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TimeOfDaySunLight path: Common/API/IBlockAccessor.cs startLine: 139 diff --git a/api/Vintagestory.API.Common.EnumLogType.yml b/api/Vintagestory.API.Common.EnumLogType.yml index c06d6d77..a9a7658b 100644 --- a/api/Vintagestory.API.Common.EnumLogType.yml +++ b/api/Vintagestory.API.Common.EnumLogType.yml @@ -27,8 +27,8 @@ items: source: remote: path: VintagestoryApi/Common/EnumLogType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumLogType path: Common/EnumLogType.cs startLine: 4 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Common/EnumLogType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Chat path: Common/EnumLogType.cs startLine: 6 @@ -78,8 +78,8 @@ items: source: remote: path: VintagestoryApi/Common/EnumLogType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Event path: Common/EnumLogType.cs startLine: 7 @@ -104,8 +104,8 @@ items: source: remote: path: VintagestoryApi/Common/EnumLogType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StoryEvent path: Common/EnumLogType.cs startLine: 8 @@ -130,8 +130,8 @@ items: source: remote: path: VintagestoryApi/Common/EnumLogType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Build path: Common/EnumLogType.cs startLine: 9 @@ -156,8 +156,8 @@ items: source: remote: path: VintagestoryApi/Common/EnumLogType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VerboseDebug path: Common/EnumLogType.cs startLine: 10 @@ -182,8 +182,8 @@ items: source: remote: path: VintagestoryApi/Common/EnumLogType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Debug path: Common/EnumLogType.cs startLine: 11 @@ -208,8 +208,8 @@ items: source: remote: path: VintagestoryApi/Common/EnumLogType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Notification path: Common/EnumLogType.cs startLine: 12 @@ -234,8 +234,8 @@ items: source: remote: path: VintagestoryApi/Common/EnumLogType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Warning path: Common/EnumLogType.cs startLine: 13 @@ -260,8 +260,8 @@ items: source: remote: path: VintagestoryApi/Common/EnumLogType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Error path: Common/EnumLogType.cs startLine: 14 @@ -286,8 +286,8 @@ items: source: remote: path: VintagestoryApi/Common/EnumLogType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Fatal path: Common/EnumLogType.cs startLine: 15 @@ -312,8 +312,8 @@ items: source: remote: path: VintagestoryApi/Common/EnumLogType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Audit path: Common/EnumLogType.cs startLine: 16 @@ -338,8 +338,8 @@ items: source: remote: path: VintagestoryApi/Common/EnumLogType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Worldgen path: Common/EnumLogType.cs startLine: 17 diff --git a/api/Vintagestory.API.Common.EnumMatterState.yml b/api/Vintagestory.API.Common.EnumMatterState.yml index 84d999a9..c96d46b5 100644 --- a/api/Vintagestory.API.Common.EnumMatterState.yml +++ b/api/Vintagestory.API.Common.EnumMatterState.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/EnumMatterState.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumMatterState path: Common/Collectible/Block/EnumMatterState.cs startLine: 2 @@ -45,8 +45,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/EnumMatterState.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Gas path: Common/Collectible/Block/EnumMatterState.cs startLine: 7 @@ -73,8 +73,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/EnumMatterState.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Liquid path: Common/Collectible/Block/EnumMatterState.cs startLine: 12 @@ -101,8 +101,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/EnumMatterState.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Solid path: Common/Collectible/Block/EnumMatterState.cs startLine: 17 @@ -129,8 +129,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/EnumMatterState.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Plasma path: Common/Collectible/Block/EnumMatterState.cs startLine: 22 @@ -157,8 +157,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/EnumMatterState.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BoseEinsteinCondensate path: Common/Collectible/Block/EnumMatterState.cs startLine: 27 diff --git a/api/Vintagestory.API.Common.EnumMergePriority.yml b/api/Vintagestory.API.Common.EnumMergePriority.yml index afcc89fd..116d079e 100644 --- a/api/Vintagestory.API.Common.EnumMergePriority.yml +++ b/api/Vintagestory.API.Common.EnumMergePriority.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemStackMergeOperation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumMergePriority path: Common/Inventory/ItemStackMergeOperation.cs startLine: 4 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemStackMergeOperation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AutoMerge path: Common/Inventory/ItemStackMergeOperation.cs startLine: 9 @@ -71,8 +71,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemStackMergeOperation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DirectMerge path: Common/Inventory/ItemStackMergeOperation.cs startLine: 13 @@ -99,8 +99,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemStackMergeOperation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ConfirmedMerge path: Common/Inventory/ItemStackMergeOperation.cs startLine: 17 diff --git a/api/Vintagestory.API.Common.EnumModSourceType.yml b/api/Vintagestory.API.Common.EnumModSourceType.yml index 21aba15b..d0c7b13f 100644 --- a/api/Vintagestory.API.Common.EnumModSourceType.yml +++ b/api/Vintagestory.API.Common.EnumModSourceType.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/Mod.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumModSourceType path: Common/Assets/Mod.cs startLine: 54 @@ -46,8 +46,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/Mod.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CS path: Common/Assets/Mod.cs startLine: 57 @@ -74,8 +74,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/Mod.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DLL path: Common/Assets/Mod.cs startLine: 59 @@ -102,8 +102,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/Mod.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ZIP path: Common/Assets/Mod.cs startLine: 61 @@ -130,8 +130,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/Mod.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Folder path: Common/Assets/Mod.cs startLine: 63 diff --git a/api/Vintagestory.API.Common.EnumModType.yml b/api/Vintagestory.API.Common.EnumModType.yml index 1a90bd40..eff7e9fe 100644 --- a/api/Vintagestory.API.Common.EnumModType.yml +++ b/api/Vintagestory.API.Common.EnumModType.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumModType path: Common/API/ModInfo.cs startLine: 18 @@ -48,8 +48,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Theme path: Common/API/ModInfo.cs startLine: 24 @@ -79,8 +79,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Content path: Common/API/ModInfo.cs startLine: 28 @@ -107,8 +107,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Common/API/ModInfo.cs startLine: 33 diff --git a/api/Vintagestory.API.Common.EnumModifierKey.yml b/api/Vintagestory.API.Common.EnumModifierKey.yml index f4c7bd88..59bd9e0e 100644 --- a/api/Vintagestory.API.Common.EnumModifierKey.yml +++ b/api/Vintagestory.API.Common.EnumModifierKey.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/Controls/EnumModifierKey.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumModifierKey path: Common/Controls/EnumModifierKey.cs startLine: 4 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Common/Controls/EnumModifierKey.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CTRL path: Common/Controls/EnumModifierKey.cs startLine: 7 @@ -79,8 +79,8 @@ items: source: remote: path: VintagestoryApi/Common/Controls/EnumModifierKey.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SHIFT path: Common/Controls/EnumModifierKey.cs startLine: 8 @@ -105,8 +105,8 @@ items: source: remote: path: VintagestoryApi/Common/Controls/EnumModifierKey.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ALT path: Common/Controls/EnumModifierKey.cs startLine: 9 diff --git a/api/Vintagestory.API.Common.EnumMonth.yml b/api/Vintagestory.API.Common.EnumMonth.yml index 7fe85b94..5b151f95 100644 --- a/api/Vintagestory.API.Common.EnumMonth.yml +++ b/api/Vintagestory.API.Common.EnumMonth.yml @@ -27,8 +27,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumMonth path: Common/API/IGameCalendar.cs startLine: 4 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: January path: Common/API/IGameCalendar.cs startLine: 6 @@ -78,8 +78,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: February path: Common/API/IGameCalendar.cs startLine: 7 @@ -104,8 +104,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: March path: Common/API/IGameCalendar.cs startLine: 8 @@ -130,8 +130,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: April path: Common/API/IGameCalendar.cs startLine: 9 @@ -156,8 +156,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: May path: Common/API/IGameCalendar.cs startLine: 10 @@ -182,8 +182,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: June path: Common/API/IGameCalendar.cs startLine: 11 @@ -208,8 +208,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: July path: Common/API/IGameCalendar.cs startLine: 12 @@ -234,8 +234,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: August path: Common/API/IGameCalendar.cs startLine: 13 @@ -260,8 +260,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: September path: Common/API/IGameCalendar.cs startLine: 14 @@ -286,8 +286,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: October path: Common/API/IGameCalendar.cs startLine: 15 @@ -312,8 +312,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: November path: Common/API/IGameCalendar.cs startLine: 16 @@ -338,8 +338,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: December path: Common/API/IGameCalendar.cs startLine: 17 diff --git a/api/Vintagestory.API.Common.EnumMoonPhase.yml b/api/Vintagestory.API.Common.EnumMoonPhase.yml index 73d87961..f2409f7d 100644 --- a/api/Vintagestory.API.Common.EnumMoonPhase.yml +++ b/api/Vintagestory.API.Common.EnumMoonPhase.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumMoonPhase path: Common/API/IGameCalendar.cs startLine: 28 @@ -48,8 +48,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Empty path: Common/API/IGameCalendar.cs startLine: 30 @@ -74,8 +74,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Grow1 path: Common/API/IGameCalendar.cs startLine: 31 @@ -100,8 +100,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Grow2 path: Common/API/IGameCalendar.cs startLine: 32 @@ -126,8 +126,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Grow3 path: Common/API/IGameCalendar.cs startLine: 33 @@ -152,8 +152,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Full path: Common/API/IGameCalendar.cs startLine: 34 @@ -178,8 +178,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Shrink1 path: Common/API/IGameCalendar.cs startLine: 35 @@ -204,8 +204,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Shrink2 path: Common/API/IGameCalendar.cs startLine: 36 @@ -230,8 +230,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Shrink3 path: Common/API/IGameCalendar.cs startLine: 37 diff --git a/api/Vintagestory.API.Common.EnumMountAngleMode.yml b/api/Vintagestory.API.Common.EnumMountAngleMode.yml index 94392bda..86bf46c8 100644 --- a/api/Vintagestory.API.Common.EnumMountAngleMode.yml +++ b/api/Vintagestory.API.Common.EnumMountAngleMode.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Common/IMountable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumMountAngleMode path: Common/IMountable.cs startLine: 6 @@ -45,8 +45,8 @@ items: source: remote: path: VintagestoryApi/Common/IMountable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Unaffected path: Common/IMountable.cs startLine: 11 @@ -73,8 +73,8 @@ items: source: remote: path: VintagestoryApi/Common/IMountable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PushYaw path: Common/IMountable.cs startLine: 15 @@ -101,8 +101,8 @@ items: source: remote: path: VintagestoryApi/Common/IMountable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Push path: Common/IMountable.cs startLine: 19 @@ -129,8 +129,8 @@ items: source: remote: path: VintagestoryApi/Common/IMountable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FixateYaw path: Common/IMountable.cs startLine: 23 @@ -157,8 +157,8 @@ items: source: remote: path: VintagestoryApi/Common/IMountable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Fixate path: Common/IMountable.cs startLine: 27 diff --git a/api/Vintagestory.API.Common.EnumMouseButton.yml b/api/Vintagestory.API.Common.EnumMouseButton.yml index cbffbd4a..0757750d 100644 --- a/api/Vintagestory.API.Common.EnumMouseButton.yml +++ b/api/Vintagestory.API.Common.EnumMouseButton.yml @@ -25,8 +25,8 @@ items: source: remote: path: VintagestoryApi/Common/Controls/EnumMouseButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumMouseButton path: Common/Controls/EnumMouseButton.cs startLine: 5 @@ -50,8 +50,8 @@ items: source: remote: path: VintagestoryApi/Common/Controls/EnumMouseButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Left path: Common/Controls/EnumMouseButton.cs startLine: 7 @@ -76,8 +76,8 @@ items: source: remote: path: VintagestoryApi/Common/Controls/EnumMouseButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Middle path: Common/Controls/EnumMouseButton.cs startLine: 8 @@ -102,8 +102,8 @@ items: source: remote: path: VintagestoryApi/Common/Controls/EnumMouseButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Right path: Common/Controls/EnumMouseButton.cs startLine: 9 @@ -128,8 +128,8 @@ items: source: remote: path: VintagestoryApi/Common/Controls/EnumMouseButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Button4 path: Common/Controls/EnumMouseButton.cs startLine: 10 @@ -154,8 +154,8 @@ items: source: remote: path: VintagestoryApi/Common/Controls/EnumMouseButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Button5 path: Common/Controls/EnumMouseButton.cs startLine: 11 @@ -180,8 +180,8 @@ items: source: remote: path: VintagestoryApi/Common/Controls/EnumMouseButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Button6 path: Common/Controls/EnumMouseButton.cs startLine: 12 @@ -206,8 +206,8 @@ items: source: remote: path: VintagestoryApi/Common/Controls/EnumMouseButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Button7 path: Common/Controls/EnumMouseButton.cs startLine: 13 @@ -232,8 +232,8 @@ items: source: remote: path: VintagestoryApi/Common/Controls/EnumMouseButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Button8 path: Common/Controls/EnumMouseButton.cs startLine: 14 @@ -258,8 +258,8 @@ items: source: remote: path: VintagestoryApi/Common/Controls/EnumMouseButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Wheel path: Common/Controls/EnumMouseButton.cs startLine: 16 @@ -284,8 +284,8 @@ items: source: remote: path: VintagestoryApi/Common/Controls/EnumMouseButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: None path: Common/Controls/EnumMouseButton.cs startLine: 18 diff --git a/api/Vintagestory.API.Common.EnumOrigin.yml b/api/Vintagestory.API.Common.EnumOrigin.yml index 891272e1..de0d11ea 100644 --- a/api/Vintagestory.API.Common.EnumOrigin.yml +++ b/api/Vintagestory.API.Common.EnumOrigin.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumOrigin path: Common/Collectible/Block/BlockSchematic.cs startLine: 35 @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartPos path: Common/Collectible/Block/BlockSchematic.cs startLine: 37 @@ -70,8 +70,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BottomCenter path: Common/Collectible/Block/BlockSchematic.cs startLine: 38 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TopCenter path: Common/Collectible/Block/BlockSchematic.cs startLine: 39 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MiddleCenter path: Common/Collectible/Block/BlockSchematic.cs startLine: 40 diff --git a/api/Vintagestory.API.Common.EnumOwnerType.yml b/api/Vintagestory.API.Common.EnumOwnerType.yml index 5d7b60ab..3340b3f8 100644 --- a/api/Vintagestory.API.Common.EnumOwnerType.yml +++ b/api/Vintagestory.API.Common.EnumOwnerType.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumOwnerType path: Common/LandClaim.cs startLine: 8 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Entity path: Common/LandClaim.cs startLine: 10 @@ -69,8 +69,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Player path: Common/LandClaim.cs startLine: 11 @@ -95,8 +95,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Group path: Common/LandClaim.cs startLine: 12 diff --git a/api/Vintagestory.API.Common.EnumParseResult.yml b/api/Vintagestory.API.Common.EnumParseResult.yml index 205310ea..fe518af6 100644 --- a/api/Vintagestory.API.Common.EnumParseResult.yml +++ b/api/Vintagestory.API.Common.EnumParseResult.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumParseResult path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 188 @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Good path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 190 @@ -70,8 +70,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Bad path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 191 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Deferred path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 192 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DependsOnSubsequent path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 193 diff --git a/api/Vintagestory.API.Common.EnumParseResultStatus.yml b/api/Vintagestory.API.Common.EnumParseResultStatus.yml index 5a32d665..81f08ea9 100644 --- a/api/Vintagestory.API.Common.EnumParseResultStatus.yml +++ b/api/Vintagestory.API.Common.EnumParseResultStatus.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumParseResultStatus path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 196 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Loading path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 198 @@ -69,8 +69,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Ready path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 199 @@ -95,8 +95,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Error path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 200 diff --git a/api/Vintagestory.API.Common.EnumParticleModel.yml b/api/Vintagestory.API.Common.EnumParticleModel.yml index e14f64a8..fc6521db 100644 --- a/api/Vintagestory.API.Common.EnumParticleModel.yml +++ b/api/Vintagestory.API.Common.EnumParticleModel.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/EnumParticleModel.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumParticleModel path: Common/Particle/EnumParticleModel.cs startLine: 2 @@ -42,8 +42,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/EnumParticleModel.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Quad path: Common/Particle/EnumParticleModel.cs startLine: 4 @@ -68,8 +68,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/EnumParticleModel.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Cube path: Common/Particle/EnumParticleModel.cs startLine: 5 diff --git a/api/Vintagestory.API.Common.EnumPlayerAccessResult.yml b/api/Vintagestory.API.Common.EnumPlayerAccessResult.yml index aa3cad68..b0afa45b 100644 --- a/api/Vintagestory.API.Common.EnumPlayerAccessResult.yml +++ b/api/Vintagestory.API.Common.EnumPlayerAccessResult.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumPlayerAccessResult path: Common/LandClaim.cs startLine: 22 @@ -46,8 +46,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Denied path: Common/LandClaim.cs startLine: 24 @@ -72,8 +72,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OkOwner path: Common/LandClaim.cs startLine: 25 @@ -98,8 +98,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OkGroup path: Common/LandClaim.cs startLine: 26 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OkPrivilege path: Common/LandClaim.cs startLine: 27 @@ -150,8 +150,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OkGrantedPlayer path: Common/LandClaim.cs startLine: 28 @@ -176,8 +176,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OkGrantedGroup path: Common/LandClaim.cs startLine: 29 diff --git a/api/Vintagestory.API.Common.EnumPlayerGroupMemberShip.yml b/api/Vintagestory.API.Common.EnumPlayerGroupMemberShip.yml index 8920f8bf..1c92a803 100644 --- a/api/Vintagestory.API.Common.EnumPlayerGroupMemberShip.yml +++ b/api/Vintagestory.API.Common.EnumPlayerGroupMemberShip.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/EnumPlayerGroupMemberShip.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumPlayerGroupMemberShip path: Common/Entity/Player/EnumPlayerGroupMemberShip.cs startLine: 2 @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/EnumPlayerGroupMemberShip.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: None path: Common/Entity/Player/EnumPlayerGroupMemberShip.cs startLine: 4 @@ -70,8 +70,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/EnumPlayerGroupMemberShip.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Member path: Common/Entity/Player/EnumPlayerGroupMemberShip.cs startLine: 9 @@ -98,8 +98,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/EnumPlayerGroupMemberShip.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Op path: Common/Entity/Player/EnumPlayerGroupMemberShip.cs startLine: 14 @@ -126,8 +126,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/EnumPlayerGroupMemberShip.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Owner path: Common/Entity/Player/EnumPlayerGroupMemberShip.cs startLine: 19 diff --git a/api/Vintagestory.API.Common.EnumPlayerJoinBehavior.yml b/api/Vintagestory.API.Common.EnumPlayerJoinBehavior.yml index f56d2de0..f35cb04b 100644 --- a/api/Vintagestory.API.Common.EnumPlayerJoinBehavior.yml +++ b/api/Vintagestory.API.Common.EnumPlayerJoinBehavior.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Server/EnumPlayerJoinBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumPlayerJoinBehavior path: Server/EnumPlayerJoinBehavior.cs startLine: 2 @@ -42,8 +42,8 @@ items: source: remote: path: VintagestoryApi/Server/EnumPlayerJoinBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Default path: Server/EnumPlayerJoinBehavior.cs startLine: 4 @@ -68,8 +68,8 @@ items: source: remote: path: VintagestoryApi/Server/EnumPlayerJoinBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AwaitReady path: Server/EnumPlayerJoinBehavior.cs startLine: 5 diff --git a/api/Vintagestory.API.Common.EnumRandomizeAxes.yml b/api/Vintagestory.API.Common.EnumRandomizeAxes.yml index 7a0035b8..31e7b5d8 100644 --- a/api/Vintagestory.API.Common.EnumRandomizeAxes.yml +++ b/api/Vintagestory.API.Common.EnumRandomizeAxes.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumRandomizeAxes.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumRandomizeAxes path: Common/Collectible/EnumRandomizeAxes.cs startLine: 2 @@ -42,8 +42,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumRandomizeAxes.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XYZ path: Common/Collectible/EnumRandomizeAxes.cs startLine: 4 @@ -68,8 +68,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumRandomizeAxes.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XZ path: Common/Collectible/EnumRandomizeAxes.cs startLine: 5 diff --git a/api/Vintagestory.API.Common.EnumReflectiveMode.yml b/api/Vintagestory.API.Common.EnumReflectiveMode.yml index 32f35dae..7f29efa3 100644 --- a/api/Vintagestory.API.Common.EnumReflectiveMode.yml +++ b/api/Vintagestory.API.Common.EnumReflectiveMode.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumReflectiveMode path: Common/Collectible/Block/VertexFlags.cs startLine: 9 @@ -48,8 +48,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: None path: Common/Collectible/Block/VertexFlags.cs startLine: 14 @@ -76,8 +76,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Weak path: Common/Collectible/Block/VertexFlags.cs startLine: 18 @@ -104,8 +104,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Medium path: Common/Collectible/Block/VertexFlags.cs startLine: 22 @@ -132,8 +132,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Strong path: Common/Collectible/Block/VertexFlags.cs startLine: 26 @@ -160,8 +160,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sparkly path: Common/Collectible/Block/VertexFlags.cs startLine: 30 @@ -188,8 +188,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mild path: Common/Collectible/Block/VertexFlags.cs startLine: 32 diff --git a/api/Vintagestory.API.Common.EnumReplaceMode.yml b/api/Vintagestory.API.Common.EnumReplaceMode.yml index ab790df6..dfefd034 100644 --- a/api/Vintagestory.API.Common.EnumReplaceMode.yml +++ b/api/Vintagestory.API.Common.EnumReplaceMode.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumReplaceMode path: Common/Collectible/Block/BlockSchematic.cs startLine: 15 @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Replaceable path: Common/Collectible/Block/BlockSchematic.cs startLine: 20 @@ -72,8 +72,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReplaceAll path: Common/Collectible/Block/BlockSchematic.cs startLine: 24 @@ -100,8 +100,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReplaceAllNoAir path: Common/Collectible/Block/BlockSchematic.cs startLine: 28 @@ -128,8 +128,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReplaceOnlyAir path: Common/Collectible/Block/BlockSchematic.cs startLine: 32 diff --git a/api/Vintagestory.API.Common.EnumRetentionType.yml b/api/Vintagestory.API.Common.EnumRetentionType.yml index 9ba41a4c..098590b4 100644 --- a/api/Vintagestory.API.Common.EnumRetentionType.yml +++ b/api/Vintagestory.API.Common.EnumRetentionType.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumRetentionType path: Common/Collectible/Block/Block.cs startLine: 16 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Heat path: Common/Collectible/Block/Block.cs startLine: 18 @@ -69,8 +69,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sound path: Common/Collectible/Block/Block.cs startLine: 19 @@ -95,8 +95,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Block.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Water path: Common/Collectible/Block/Block.cs startLine: 20 diff --git a/api/Vintagestory.API.Common.EnumSeason.yml b/api/Vintagestory.API.Common.EnumSeason.yml index c5ebffd5..b07c21b3 100644 --- a/api/Vintagestory.API.Common.EnumSeason.yml +++ b/api/Vintagestory.API.Common.EnumSeason.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumSeason path: Common/API/IGameCalendar.cs startLine: 20 @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Spring path: Common/API/IGameCalendar.cs startLine: 22 @@ -70,8 +70,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Summer path: Common/API/IGameCalendar.cs startLine: 23 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Fall path: Common/API/IGameCalendar.cs startLine: 24 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Winter path: Common/API/IGameCalendar.cs startLine: 25 diff --git a/api/Vintagestory.API.Common.EnumShapeFormat.yml b/api/Vintagestory.API.Common.EnumShapeFormat.yml index 380b71bd..fb96cf5d 100644 --- a/api/Vintagestory.API.Common.EnumShapeFormat.yml +++ b/api/Vintagestory.API.Common.EnumShapeFormat.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/CompositeShape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumShapeFormat path: Common/Model/Shape/CompositeShape.cs startLine: 5 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/CompositeShape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VintageStory path: Common/Model/Shape/CompositeShape.cs startLine: 7 @@ -69,8 +69,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/CompositeShape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Obj path: Common/Model/Shape/CompositeShape.cs startLine: 8 @@ -95,8 +95,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/CompositeShape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GltfEmbedded path: Common/Model/Shape/CompositeShape.cs startLine: 9 diff --git a/api/Vintagestory.API.Common.EnumSmeltType.yml b/api/Vintagestory.API.Common.EnumSmeltType.yml index 62ef79af..7cfb6c7c 100644 --- a/api/Vintagestory.API.Common.EnumSmeltType.yml +++ b/api/Vintagestory.API.Common.EnumSmeltType.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CombustibleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumSmeltType path: Common/Collectible/CombustibleProperties.cs startLine: 4 @@ -45,8 +45,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CombustibleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Smelt path: Common/Collectible/CombustibleProperties.cs startLine: 6 @@ -71,8 +71,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CombustibleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Cook path: Common/Collectible/CombustibleProperties.cs startLine: 7 @@ -97,8 +97,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CombustibleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Bake path: Common/Collectible/CombustibleProperties.cs startLine: 8 @@ -123,8 +123,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CombustibleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Convert path: Common/Collectible/CombustibleProperties.cs startLine: 9 @@ -149,8 +149,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CombustibleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Fire path: Common/Collectible/CombustibleProperties.cs startLine: 10 diff --git a/api/Vintagestory.API.Common.EnumSoilNutrient.yml b/api/Vintagestory.API.Common.EnumSoilNutrient.yml index 0a157ff3..053caa83 100644 --- a/api/Vintagestory.API.Common.EnumSoilNutrient.yml +++ b/api/Vintagestory.API.Common.EnumSoilNutrient.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Crop/BlockCropProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumSoilNutrient path: Common/Collectible/Block/Crop/BlockCropProperties.cs startLine: 4 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Crop/BlockCropProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: N path: Common/Collectible/Block/Crop/BlockCropProperties.cs startLine: 6 @@ -69,8 +69,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Crop/BlockCropProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: P path: Common/Collectible/Block/Crop/BlockCropProperties.cs startLine: 6 @@ -95,8 +95,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Crop/BlockCropProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: K path: Common/Collectible/Block/Crop/BlockCropProperties.cs startLine: 6 diff --git a/api/Vintagestory.API.Common.EnumSpecialKey.yml b/api/Vintagestory.API.Common.EnumSpecialKey.yml index c5f04dad..b2c9ef9b 100644 --- a/api/Vintagestory.API.Common.EnumSpecialKey.yml +++ b/api/Vintagestory.API.Common.EnumSpecialKey.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/Controls/EnumSpecialKey.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumSpecialKey path: Common/Controls/EnumSpecialKey.cs startLine: 2 @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Common/Controls/EnumSpecialKey.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Respawn path: Common/Controls/EnumSpecialKey.cs startLine: 4 @@ -70,8 +70,8 @@ items: source: remote: path: VintagestoryApi/Common/Controls/EnumSpecialKey.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetSpawn path: Common/Controls/EnumSpecialKey.cs startLine: 5 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Common/Controls/EnumSpecialKey.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TabPlayerList path: Common/Controls/EnumSpecialKey.cs startLine: 6 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Common/Controls/EnumSpecialKey.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SelectTeam path: Common/Controls/EnumSpecialKey.cs startLine: 7 diff --git a/api/Vintagestory.API.Common.EnumStatBlendType.yml b/api/Vintagestory.API.Common.EnumStatBlendType.yml index 497614fe..bcfecc97 100644 --- a/api/Vintagestory.API.Common.EnumStatBlendType.yml +++ b/api/Vintagestory.API.Common.EnumStatBlendType.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityStats.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumStatBlendType path: Common/Entity/EntityStats.cs startLine: 170 @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityStats.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FlatSum path: Common/Entity/EntityStats.cs startLine: 172 @@ -70,8 +70,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityStats.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FlatMultiply path: Common/Entity/EntityStats.cs startLine: 173 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityStats.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WeightedSum path: Common/Entity/EntityStats.cs startLine: 174 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityStats.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WeightedOverlay path: Common/Entity/EntityStats.cs startLine: 175 diff --git a/api/Vintagestory.API.Common.EnumTokenType.yml b/api/Vintagestory.API.Common.EnumTokenType.yml index 633d1a3f..d1525bab 100644 --- a/api/Vintagestory.API.Common.EnumTokenType.yml +++ b/api/Vintagestory.API.Common.EnumTokenType.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/VtmlParser.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumTokenType path: Common/Text/VtmlParser.cs startLine: 659 @@ -42,8 +42,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/VtmlParser.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Text path: Common/Text/VtmlParser.cs startLine: 661 @@ -68,8 +68,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/VtmlParser.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Tag path: Common/Text/VtmlParser.cs startLine: 662 diff --git a/api/Vintagestory.API.Common.EnumTool.yml b/api/Vintagestory.API.Common.EnumTool.yml index 296b768c..196e2d96 100644 --- a/api/Vintagestory.API.Common.EnumTool.yml +++ b/api/Vintagestory.API.Common.EnumTool.yml @@ -34,8 +34,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumTool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumTool path: Common/Collectible/EnumTool.cs startLine: 2 @@ -59,8 +59,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumTool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Knife path: Common/Collectible/EnumTool.cs startLine: 4 @@ -85,8 +85,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumTool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pickaxe path: Common/Collectible/EnumTool.cs startLine: 5 @@ -111,8 +111,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumTool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Axe path: Common/Collectible/EnumTool.cs startLine: 6 @@ -137,8 +137,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumTool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sword path: Common/Collectible/EnumTool.cs startLine: 7 @@ -163,8 +163,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumTool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Shovel path: Common/Collectible/EnumTool.cs startLine: 8 @@ -189,8 +189,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumTool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Hammer path: Common/Collectible/EnumTool.cs startLine: 9 @@ -215,8 +215,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumTool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Spear path: Common/Collectible/EnumTool.cs startLine: 10 @@ -241,8 +241,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumTool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Bow path: Common/Collectible/EnumTool.cs startLine: 11 @@ -267,8 +267,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumTool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Shears path: Common/Collectible/EnumTool.cs startLine: 12 @@ -293,8 +293,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumTool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sickle path: Common/Collectible/EnumTool.cs startLine: 13 @@ -319,8 +319,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumTool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Hoe path: Common/Collectible/EnumTool.cs startLine: 14 @@ -345,8 +345,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumTool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Saw path: Common/Collectible/EnumTool.cs startLine: 15 @@ -371,8 +371,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumTool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Chisel path: Common/Collectible/EnumTool.cs startLine: 16 @@ -397,8 +397,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumTool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Scythe path: Common/Collectible/EnumTool.cs startLine: 17 @@ -423,8 +423,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumTool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sling path: Common/Collectible/EnumTool.cs startLine: 18 @@ -449,8 +449,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumTool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Wrench path: Common/Collectible/EnumTool.cs startLine: 19 @@ -475,8 +475,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumTool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Probe path: Common/Collectible/EnumTool.cs startLine: 20 @@ -501,8 +501,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumTool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Meter path: Common/Collectible/EnumTool.cs startLine: 21 @@ -527,8 +527,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumTool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Drill path: Common/Collectible/EnumTool.cs startLine: 22 diff --git a/api/Vintagestory.API.Common.EnumTransitionType.yml b/api/Vintagestory.API.Common.EnumTransitionType.yml index 674444a4..1eef946b 100644 --- a/api/Vintagestory.API.Common.EnumTransitionType.yml +++ b/api/Vintagestory.API.Common.EnumTransitionType.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/TransitionableProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumTransitionType path: Common/Collectible/TransitionableProperties.cs startLine: 5 @@ -48,8 +48,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/TransitionableProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Perish path: Common/Collectible/TransitionableProperties.cs startLine: 10 @@ -76,8 +76,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/TransitionableProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dry path: Common/Collectible/TransitionableProperties.cs startLine: 14 @@ -104,8 +104,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/TransitionableProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Burn path: Common/Collectible/TransitionableProperties.cs startLine: 18 @@ -132,8 +132,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/TransitionableProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Cure path: Common/Collectible/TransitionableProperties.cs startLine: 19 @@ -158,8 +158,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/TransitionableProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Convert path: Common/Collectible/TransitionableProperties.cs startLine: 23 @@ -186,8 +186,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/TransitionableProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Ripen path: Common/Collectible/TransitionableProperties.cs startLine: 28 @@ -214,8 +214,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/TransitionableProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Melt path: Common/Collectible/TransitionableProperties.cs startLine: 33 @@ -242,8 +242,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/TransitionableProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Harden path: Common/Collectible/TransitionableProperties.cs startLine: 38 diff --git a/api/Vintagestory.API.Common.EnumWindBitMode.yml b/api/Vintagestory.API.Common.EnumWindBitMode.yml index d0cd692c..6a6fd052 100644 --- a/api/Vintagestory.API.Common.EnumWindBitMode.yml +++ b/api/Vintagestory.API.Common.EnumWindBitMode.yml @@ -27,8 +27,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumWindBitMode path: Common/Collectible/Block/VertexFlags.cs startLine: 36 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NoWind path: Common/Collectible/Block/VertexFlags.cs startLine: 41 @@ -80,8 +80,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WeakWind path: Common/Collectible/Block/VertexFlags.cs startLine: 45 @@ -108,8 +108,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NormalWind path: Common/Collectible/Block/VertexFlags.cs startLine: 49 @@ -136,8 +136,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Leaves path: Common/Collectible/Block/VertexFlags.cs startLine: 53 @@ -164,8 +164,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Bend path: Common/Collectible/Block/VertexFlags.cs startLine: 57 @@ -192,8 +192,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TallBend path: Common/Collectible/Block/VertexFlags.cs startLine: 61 @@ -220,8 +220,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Water path: Common/Collectible/Block/VertexFlags.cs startLine: 65 @@ -248,8 +248,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExtraWeakWind path: Common/Collectible/Block/VertexFlags.cs startLine: 66 @@ -274,8 +274,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Fruit path: Common/Collectible/Block/VertexFlags.cs startLine: 67 @@ -300,8 +300,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WeakWindNoBend path: Common/Collectible/Block/VertexFlags.cs startLine: 68 @@ -326,8 +326,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WeakWindInverseBend path: Common/Collectible/Block/VertexFlags.cs startLine: 69 @@ -352,8 +352,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WaterPlant path: Common/Collectible/Block/VertexFlags.cs startLine: 70 diff --git a/api/Vintagestory.API.Common.EnumWindBitModeMask.yml b/api/Vintagestory.API.Common.EnumWindBitModeMask.yml index 8006400f..69dfe0d8 100644 --- a/api/Vintagestory.API.Common.EnumWindBitModeMask.yml +++ b/api/Vintagestory.API.Common.EnumWindBitModeMask.yml @@ -24,8 +24,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumWindBitModeMask path: Common/Collectible/Block/VertexFlags.cs startLine: 76 @@ -61,8 +61,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WeakWind path: Common/Collectible/Block/VertexFlags.cs startLine: 81 @@ -90,8 +90,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NormalWind path: Common/Collectible/Block/VertexFlags.cs startLine: 85 @@ -119,8 +119,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Leaves path: Common/Collectible/Block/VertexFlags.cs startLine: 89 @@ -148,8 +148,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Bend path: Common/Collectible/Block/VertexFlags.cs startLine: 93 @@ -177,8 +177,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TallBend path: Common/Collectible/Block/VertexFlags.cs startLine: 97 @@ -206,8 +206,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Water path: Common/Collectible/Block/VertexFlags.cs startLine: 101 @@ -235,8 +235,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExtraWeakWind path: Common/Collectible/Block/VertexFlags.cs startLine: 105 @@ -264,8 +264,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Fruit path: Common/Collectible/Block/VertexFlags.cs startLine: 107 @@ -291,8 +291,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WeakWindNoBend path: Common/Collectible/Block/VertexFlags.cs startLine: 109 diff --git a/api/Vintagestory.API.Common.EnumWorldAccessResponse.yml b/api/Vintagestory.API.Common.EnumWorldAccessResponse.yml index 631cc5a2..6e62c3ce 100644 --- a/api/Vintagestory.API.Common.EnumWorldAccessResponse.yml +++ b/api/Vintagestory.API.Common.EnumWorldAccessResponse.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Common/API/EnumBlockAccessResponse.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumWorldAccessResponse path: Common/API/EnumBlockAccessResponse.cs startLine: 2 @@ -47,8 +47,8 @@ items: source: remote: path: VintagestoryApi/Common/API/EnumBlockAccessResponse.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Granted path: Common/API/EnumBlockAccessResponse.cs startLine: 7 @@ -75,8 +75,8 @@ items: source: remote: path: VintagestoryApi/Common/API/EnumBlockAccessResponse.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InSpectatorMode path: Common/API/EnumBlockAccessResponse.cs startLine: 11 @@ -103,8 +103,8 @@ items: source: remote: path: VintagestoryApi/Common/API/EnumBlockAccessResponse.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InGuestMode path: Common/API/EnumBlockAccessResponse.cs startLine: 15 @@ -131,8 +131,8 @@ items: source: remote: path: VintagestoryApi/Common/API/EnumBlockAccessResponse.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerDead path: Common/API/EnumBlockAccessResponse.cs startLine: 19 @@ -159,8 +159,8 @@ items: source: remote: path: VintagestoryApi/Common/API/EnumBlockAccessResponse.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NoPrivilege path: Common/API/EnumBlockAccessResponse.cs startLine: 23 @@ -187,8 +187,8 @@ items: source: remote: path: VintagestoryApi/Common/API/EnumBlockAccessResponse.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LandClaimed path: Common/API/EnumBlockAccessResponse.cs startLine: 27 @@ -215,8 +215,8 @@ items: source: remote: path: VintagestoryApi/Common/API/EnumBlockAccessResponse.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DeniedByMod path: Common/API/EnumBlockAccessResponse.cs startLine: 31 diff --git a/api/Vintagestory.API.Common.EventBusListenerDelegate.yml b/api/Vintagestory.API.Common.EventBusListenerDelegate.yml index 925d290f..3634082c 100644 --- a/api/Vintagestory.API.Common.EventBusListenerDelegate.yml +++ b/api/Vintagestory.API.Common.EventBusListenerDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EventBusListenerDelegate path: Common/API/IEventAPI.cs startLine: 13 diff --git a/api/Vintagestory.API.Common.ExplosionParticles.yml b/api/Vintagestory.API.Common.ExplosionParticles.yml index 54c7cad5..e942dfd9 100644 --- a/api/Vintagestory.API.Common.ExplosionParticles.yml +++ b/api/Vintagestory.API.Common.ExplosionParticles.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExplosionParticles path: Common/Particle/ExplosionParticles.cs startLine: 12 @@ -54,8 +54,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExplosionFireTrailCubicles path: Common/Particle/ExplosionParticles.cs startLine: 15 @@ -81,8 +81,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExplosionFireParticles path: Common/Particle/ExplosionParticles.cs startLine: 63 diff --git a/api/Vintagestory.API.Common.ExplosionSmokeParticles.yml b/api/Vintagestory.API.Common.ExplosionSmokeParticles.yml index e146f177..5fbd1cbd 100644 --- a/api/Vintagestory.API.Common.ExplosionSmokeParticles.yml +++ b/api/Vintagestory.API.Common.ExplosionSmokeParticles.yml @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExplosionSmokeParticles path: Common/Particle/ExplosionParticles.cs startLine: 87 @@ -92,8 +92,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: basePos path: Common/Particle/ExplosionParticles.cs startLine: 90 @@ -119,8 +119,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Async path: Common/Particle/ExplosionParticles.cs startLine: 101 @@ -152,8 +152,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Bounciness path: Common/Particle/ExplosionParticles.cs startLine: 103 @@ -184,8 +184,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RandomVelocityChange path: Common/Particle/ExplosionParticles.cs startLine: 104 @@ -216,8 +216,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DieOnRainHeightmap path: Common/Particle/ExplosionParticles.cs startLine: 105 @@ -249,8 +249,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Particle/ExplosionParticles.cs startLine: 106 @@ -278,8 +278,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Init path: Common/Particle/ExplosionParticles.cs startLine: 132 @@ -312,8 +312,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddBlock path: Common/Particle/ExplosionParticles.cs startLine: 134 @@ -341,8 +341,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeginParticle path: Common/Particle/ExplosionParticles.cs startLine: 143 @@ -371,8 +371,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DieInAir path: Common/Particle/ExplosionParticles.cs startLine: 151 @@ -405,8 +405,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DieInLiquid path: Common/Particle/ExplosionParticles.cs startLine: 151 @@ -439,8 +439,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SwimOnLiquid path: Common/Particle/ExplosionParticles.cs startLine: 151 @@ -471,8 +471,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VertexFlags path: Common/Particle/ExplosionParticles.cs startLine: 152 @@ -505,8 +505,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GravityEffect path: Common/Particle/ExplosionParticles.cs startLine: 152 @@ -539,8 +539,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TerrainCollision path: Common/Particle/ExplosionParticles.cs startLine: 152 @@ -573,8 +573,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LifeLength path: Common/Particle/ExplosionParticles.cs startLine: 153 @@ -607,8 +607,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OpacityEvolve path: Common/Particle/ExplosionParticles.cs startLine: 154 @@ -641,8 +641,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RedEvolve path: Common/Particle/ExplosionParticles.cs startLine: 154 @@ -675,8 +675,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GreenEvolve path: Common/Particle/ExplosionParticles.cs startLine: 154 @@ -709,8 +709,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlueEvolve path: Common/Particle/ExplosionParticles.cs startLine: 154 @@ -743,8 +743,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pos path: Common/Particle/ExplosionParticles.cs startLine: 155 @@ -777,8 +777,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Quantity path: Common/Particle/ExplosionParticles.cs startLine: 178 @@ -811,8 +811,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRgbaColor path: Common/Particle/ExplosionParticles.cs startLine: 180 @@ -847,8 +847,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Size path: Common/Particle/ExplosionParticles.cs startLine: 188 @@ -881,8 +881,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SizeEvolve path: Common/Particle/ExplosionParticles.cs startLine: 190 @@ -915,8 +915,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetVelocity path: Common/Particle/ExplosionParticles.cs startLine: 192 @@ -952,8 +952,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VelocityEvolve path: Common/Particle/ExplosionParticles.cs startLine: 218 @@ -986,8 +986,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParticleModel path: Common/Particle/ExplosionParticles.cs startLine: 225 @@ -1020,8 +1020,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SelfPropelled path: Common/Particle/ExplosionParticles.cs startLine: 227 @@ -1057,8 +1057,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Common/Particle/ExplosionParticles.cs startLine: 230 @@ -1091,8 +1091,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Particle/ExplosionParticles.cs startLine: 245 @@ -1128,8 +1128,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddBlocks path: Common/Particle/ExplosionParticles.cs startLine: 260 @@ -1160,8 +1160,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SecondarySpawnInterval path: Common/Particle/ExplosionParticles.cs startLine: 268 @@ -1197,8 +1197,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SecondaryParticles path: Common/Particle/ExplosionParticles.cs startLine: 270 @@ -1231,8 +1231,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DeathParticles path: Common/Particle/ExplosionParticles.cs startLine: 271 @@ -1265,8 +1265,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PrepareForSecondarySpawn path: Common/Particle/ExplosionParticles.cs startLine: 272 @@ -1299,8 +1299,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParentVelocity path: Common/Particle/ExplosionParticles.cs startLine: 277 @@ -1331,8 +1331,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ExplosionParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParentVelocityWeight path: Common/Particle/ExplosionParticles.cs startLine: 280 diff --git a/api/Vintagestory.API.Common.ExtraHandbookSection.yml b/api/Vintagestory.API.Common.ExtraHandbookSection.yml index 078f6459..1c8ee125 100644 --- a/api/Vintagestory.API.Common.ExtraHandbookSection.yml +++ b/api/Vintagestory.API.Common.ExtraHandbookSection.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExtraHandbookSection path: Common/Collectible/Collectible.cs startLine: 16 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Title path: Common/Collectible/Collectible.cs startLine: 16 @@ -80,8 +80,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Text path: Common/Collectible/Collectible.cs startLine: 16 @@ -107,8 +107,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Collectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TextParts path: Common/Collectible/Collectible.cs startLine: 16 diff --git a/api/Vintagestory.API.Common.FertilizerProps.yml b/api/Vintagestory.API.Common.FertilizerProps.yml index 86446cf1..04a5d6fd 100644 --- a/api/Vintagestory.API.Common.FertilizerProps.yml +++ b/api/Vintagestory.API.Common.FertilizerProps.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/FertilizerProps.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FertilizerProps path: Common/Collectible/FertilizerProps.cs startLine: 2 @@ -54,8 +54,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/FertilizerProps.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: N path: Common/Collectible/FertilizerProps.cs startLine: 4 @@ -81,8 +81,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/FertilizerProps.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: P path: Common/Collectible/FertilizerProps.cs startLine: 5 @@ -108,8 +108,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/FertilizerProps.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: K path: Common/Collectible/FertilizerProps.cs startLine: 6 @@ -135,8 +135,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/FertilizerProps.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PermaBoost path: Common/Collectible/FertilizerProps.cs startLine: 8 diff --git a/api/Vintagestory.API.Common.FloatArgParser.yml b/api/Vintagestory.API.Common.FloatArgParser.yml index 8af3b916..01c84339 100644 --- a/api/Vintagestory.API.Common.FloatArgParser.yml +++ b/api/Vintagestory.API.Common.FloatArgParser.yml @@ -24,8 +24,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FloatArgParser path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1497 @@ -75,8 +75,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1503 @@ -113,8 +113,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSyntaxExplanation path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1508 @@ -149,8 +149,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1513 @@ -183,8 +183,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1520 @@ -219,8 +219,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValidRange path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1527 @@ -252,8 +252,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1532 @@ -282,8 +282,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1537 @@ -313,8 +313,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1543 @@ -355,8 +355,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1567 diff --git a/api/Vintagestory.API.Common.FloatingSedimentParticles.yml b/api/Vintagestory.API.Common.FloatingSedimentParticles.yml index aec4d836..39270ef0 100644 --- a/api/Vintagestory.API.Common.FloatingSedimentParticles.yml +++ b/api/Vintagestory.API.Common.FloatingSedimentParticles.yml @@ -36,8 +36,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FloatingSedimentParticles path: Common/Particle/WaterSplashParticles.cs startLine: 6 @@ -95,8 +95,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BasePos path: Common/Particle/WaterSplashParticles.cs startLine: 9 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddPos path: Common/Particle/WaterSplashParticles.cs startLine: 10 @@ -149,8 +149,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddVelocity path: Common/Particle/WaterSplashParticles.cs startLine: 12 @@ -176,8 +176,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SedimentBlock path: Common/Particle/WaterSplashParticles.cs startLine: 14 @@ -203,8 +203,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SedimentPos path: Common/Particle/WaterSplashParticles.cs startLine: 15 @@ -230,8 +230,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: quantity path: Common/Particle/WaterSplashParticles.cs startLine: 16 @@ -257,8 +257,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: waterColor path: Common/Particle/WaterSplashParticles.cs startLine: 18 @@ -284,8 +284,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParticleModel path: Common/Particle/WaterSplashParticles.cs startLine: 20 @@ -317,8 +317,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DieInLiquid path: Common/Particle/WaterSplashParticles.cs startLine: 21 @@ -350,8 +350,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DieInAir path: Common/Particle/WaterSplashParticles.cs startLine: 22 @@ -383,8 +383,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GravityEffect path: Common/Particle/WaterSplashParticles.cs startLine: 23 @@ -416,8 +416,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LifeLength path: Common/Particle/WaterSplashParticles.cs startLine: 24 @@ -449,8 +449,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SwimOnLiquid path: Common/Particle/WaterSplashParticles.cs startLine: 25 @@ -480,8 +480,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pos path: Common/Particle/WaterSplashParticles.cs startLine: 26 @@ -513,8 +513,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Quantity path: Common/Particle/WaterSplashParticles.cs startLine: 27 @@ -546,8 +546,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Size path: Common/Particle/WaterSplashParticles.cs startLine: 29 @@ -579,8 +579,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VertexFlags path: Common/Particle/WaterSplashParticles.cs startLine: 31 @@ -612,8 +612,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SizeEvolve path: Common/Particle/WaterSplashParticles.cs startLine: 32 @@ -645,8 +645,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OpacityEvolve path: Common/Particle/WaterSplashParticles.cs startLine: 34 @@ -678,8 +678,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetVelocity path: Common/Particle/WaterSplashParticles.cs startLine: 36 @@ -714,8 +714,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRgbaColor path: Common/Particle/WaterSplashParticles.cs startLine: 45 diff --git a/api/Vintagestory.API.Common.FoodNutritionProperties.yml b/api/Vintagestory.API.Common.FoodNutritionProperties.yml index 5bdfc736..44f97395 100644 --- a/api/Vintagestory.API.Common.FoodNutritionProperties.yml +++ b/api/Vintagestory.API.Common.FoodNutritionProperties.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/NutritionProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FoodNutritionProperties path: Common/Collectible/NutritionProperties.cs startLine: 15 @@ -58,8 +58,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/NutritionProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FoodCategory path: Common/Collectible/NutritionProperties.cs startLine: 20 @@ -87,8 +87,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/NutritionProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Satiety path: Common/Collectible/NutritionProperties.cs startLine: 25 @@ -116,8 +116,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/NutritionProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Saturation path: Common/Collectible/NutritionProperties.cs startLine: 27 @@ -157,8 +157,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/NutritionProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Intoxication path: Common/Collectible/NutritionProperties.cs startLine: 34 @@ -186,8 +186,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/NutritionProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SaturationLossDelay path: Common/Collectible/NutritionProperties.cs startLine: 42 @@ -215,8 +215,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/NutritionProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Health path: Common/Collectible/NutritionProperties.cs startLine: 47 @@ -244,8 +244,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/NutritionProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EatenStack path: Common/Collectible/NutritionProperties.cs startLine: 52 @@ -273,8 +273,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/NutritionProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Collectible/NutritionProperties.cs startLine: 58 diff --git a/api/Vintagestory.API.Common.FrameProfilerUtil.yml b/api/Vintagestory.API.Common.FrameProfilerUtil.yml index f4bb7f57..9d151224 100644 --- a/api/Vintagestory.API.Common.FrameProfilerUtil.yml +++ b/api/Vintagestory.API.Common.FrameProfilerUtil.yml @@ -32,8 +32,8 @@ items: source: remote: path: VintagestoryApi/Common/FrameProfilerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FrameProfilerUtil path: Common/FrameProfilerUtil.cs startLine: 39 @@ -67,8 +67,8 @@ items: source: remote: path: VintagestoryApi/Common/FrameProfilerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Enabled path: Common/FrameProfilerUtil.cs startLine: 41 @@ -94,8 +94,8 @@ items: source: remote: path: VintagestoryApi/Common/FrameProfilerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PrintSlowTicks path: Common/FrameProfilerUtil.cs startLine: 42 @@ -121,8 +121,8 @@ items: source: remote: path: VintagestoryApi/Common/FrameProfilerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PrintSlowTicksThreshold path: Common/FrameProfilerUtil.cs startLine: 43 @@ -148,8 +148,8 @@ items: source: remote: path: VintagestoryApi/Common/FrameProfilerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PrevRootEntry path: Common/FrameProfilerUtil.cs startLine: 44 @@ -175,8 +175,8 @@ items: source: remote: path: VintagestoryApi/Common/FrameProfilerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: summary path: Common/FrameProfilerUtil.cs startLine: 45 @@ -202,8 +202,8 @@ items: source: remote: path: VintagestoryApi/Common/FrameProfilerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OutputPrefix path: Common/FrameProfilerUtil.cs startLine: 46 @@ -229,8 +229,8 @@ items: source: remote: path: VintagestoryApi/Common/FrameProfilerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: offThreadProfiles path: Common/FrameProfilerUtil.cs startLine: 48 @@ -256,8 +256,8 @@ items: source: remote: path: VintagestoryApi/Common/FrameProfilerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PrintSlowTicks_Offthreads path: Common/FrameProfilerUtil.cs startLine: 49 @@ -283,8 +283,8 @@ items: source: remote: path: VintagestoryApi/Common/FrameProfilerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PrintSlowTicksThreshold_Offthreads path: Common/FrameProfilerUtil.cs startLine: 50 @@ -310,8 +310,8 @@ items: source: remote: path: VintagestoryApi/Common/FrameProfilerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/FrameProfilerUtil.cs startLine: 58 @@ -342,8 +342,8 @@ items: source: remote: path: VintagestoryApi/Common/FrameProfilerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/FrameProfilerUtil.cs startLine: 68 @@ -377,8 +377,8 @@ items: source: remote: path: VintagestoryApi/Common/FrameProfilerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Begin path: Common/FrameProfilerUtil.cs startLine: 77 @@ -411,8 +411,8 @@ items: source: remote: path: VintagestoryApi/Common/FrameProfilerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Enter path: Common/FrameProfilerUtil.cs startLine: 87 @@ -445,8 +445,8 @@ items: source: remote: path: VintagestoryApi/Common/FrameProfilerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Leave path: Common/FrameProfilerUtil.cs startLine: 127 @@ -473,8 +473,8 @@ items: source: remote: path: VintagestoryApi/Common/FrameProfilerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mark path: Common/FrameProfilerUtil.cs startLine: 150 @@ -508,8 +508,8 @@ items: source: remote: path: VintagestoryApi/Common/FrameProfilerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: End path: Common/FrameProfilerUtil.cs startLine: 184 @@ -536,8 +536,8 @@ items: source: remote: path: VintagestoryApi/Common/FrameProfilerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OffThreadEnd path: Common/FrameProfilerUtil.cs startLine: 208 diff --git a/api/Vintagestory.API.Common.Func-2.yml b/api/Vintagestory.API.Common.Func-2.yml index 8a194f96..8af903f0 100644 --- a/api/Vintagestory.API.Common.Func-2.yml +++ b/api/Vintagestory.API.Common.Func-2.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Func path: Common/API/Delegates.cs startLine: 71 diff --git a/api/Vintagestory.API.Common.Func-3.yml b/api/Vintagestory.API.Common.Func-3.yml index 0f66acba..0ee662fc 100644 --- a/api/Vintagestory.API.Common.Func-3.yml +++ b/api/Vintagestory.API.Common.Func-3.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Func path: Common/API/Delegates.cs startLine: 72 diff --git a/api/Vintagestory.API.Common.Func-4.yml b/api/Vintagestory.API.Common.Func-4.yml index 2e6f54f2..8208d397 100644 --- a/api/Vintagestory.API.Common.Func-4.yml +++ b/api/Vintagestory.API.Common.Func-4.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Func path: Common/API/Delegates.cs startLine: 73 diff --git a/api/Vintagestory.API.Common.Func-5.yml b/api/Vintagestory.API.Common.Func-5.yml index 52e3e10c..bfeaa99b 100644 --- a/api/Vintagestory.API.Common.Func-5.yml +++ b/api/Vintagestory.API.Common.Func-5.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Func path: Common/API/Delegates.cs startLine: 74 diff --git a/api/Vintagestory.API.Common.Func-8.yml b/api/Vintagestory.API.Common.Func-8.yml index 960accec..598a709e 100644 --- a/api/Vintagestory.API.Common.Func-8.yml +++ b/api/Vintagestory.API.Common.Func-8.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Func path: Common/API/Delegates.cs startLine: 75 diff --git a/api/Vintagestory.API.Common.GeneratedStructure.yml b/api/Vintagestory.API.Common.GeneratedStructure.yml index 6df607cf..403972a4 100644 --- a/api/Vintagestory.API.Common.GeneratedStructure.yml +++ b/api/Vintagestory.API.Common.GeneratedStructure.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapRegion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GeneratedStructure path: Common/API/IMapRegion.cs startLine: 8 @@ -69,8 +69,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapRegion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Location path: Common/API/IMapRegion.cs startLine: 14 @@ -98,8 +98,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapRegion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Common/API/IMapRegion.cs startLine: 19 @@ -127,8 +127,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapRegion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Group path: Common/API/IMapRegion.cs startLine: 24 @@ -156,8 +156,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapRegion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SuppressTreesAndShrubs path: Common/API/IMapRegion.cs startLine: 29 @@ -185,8 +185,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapRegion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SuppressRivulets path: Common/API/IMapRegion.cs startLine: 34 diff --git a/api/Vintagestory.API.Common.GetAutoPullFromSlotDelegate.yml b/api/Vintagestory.API.Common.GetAutoPullFromSlotDelegate.yml index 9727b362..0eaebeda 100644 --- a/api/Vintagestory.API.Common.GetAutoPullFromSlotDelegate.yml +++ b/api/Vintagestory.API.Common.GetAutoPullFromSlotDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAutoPullFromSlotDelegate path: Common/Inventory/InventoryGeneric.cs startLine: 15 diff --git a/api/Vintagestory.API.Common.GetAutoPushIntoSlotDelegate.yml b/api/Vintagestory.API.Common.GetAutoPushIntoSlotDelegate.yml index abf1f96f..368907ca 100644 --- a/api/Vintagestory.API.Common.GetAutoPushIntoSlotDelegate.yml +++ b/api/Vintagestory.API.Common.GetAutoPushIntoSlotDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAutoPushIntoSlotDelegate path: Common/Inventory/InventoryGeneric.cs startLine: 13 diff --git a/api/Vintagestory.API.Common.GetLatitudeDelegate.yml b/api/Vintagestory.API.Common.GetLatitudeDelegate.yml index e47b00fb..0f7940a5 100644 --- a/api/Vintagestory.API.Common.GetLatitudeDelegate.yml +++ b/api/Vintagestory.API.Common.GetLatitudeDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetLatitudeDelegate path: Common/API/IGameCalendar.cs startLine: 46 diff --git a/api/Vintagestory.API.Common.GetMountableDelegate.yml b/api/Vintagestory.API.Common.GetMountableDelegate.yml index 5ef79e6f..52663b2c 100644 --- a/api/Vintagestory.API.Common.GetMountableDelegate.yml +++ b/api/Vintagestory.API.Common.GetMountableDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ICoreAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMountableDelegate path: Common/API/ICoreAPI.cs startLine: 14 diff --git a/api/Vintagestory.API.Common.GetSuitabilityDelegate.yml b/api/Vintagestory.API.Common.GetSuitabilityDelegate.yml index 53271c65..4ba1a831 100644 --- a/api/Vintagestory.API.Common.GetSuitabilityDelegate.yml +++ b/api/Vintagestory.API.Common.GetSuitabilityDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSuitabilityDelegate path: Common/Inventory/InventoryGeneric.cs startLine: 11 diff --git a/api/Vintagestory.API.Common.GridRecipe.yml b/api/Vintagestory.API.Common.GridRecipe.yml index a7dbba62..db6f5b82 100644 --- a/api/Vintagestory.API.Common.GridRecipe.yml +++ b/api/Vintagestory.API.Common.GridRecipe.yml @@ -42,8 +42,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/GridRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GridRecipe path: Common/Crafting/GridRecipe.cs startLine: 32 @@ -81,8 +81,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/GridRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Enabled path: Common/Crafting/GridRecipe.cs startLine: 38 @@ -113,8 +113,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/GridRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IngredientPattern path: Common/Crafting/GridRecipe.cs startLine: 49 @@ -155,8 +155,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/GridRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Ingredients path: Common/Crafting/GridRecipe.cs startLine: 54 @@ -184,8 +184,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/GridRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Width path: Common/Crafting/GridRecipe.cs startLine: 59 @@ -213,8 +213,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/GridRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Height path: Common/Crafting/GridRecipe.cs startLine: 64 @@ -242,8 +242,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/GridRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RecipeGroup path: Common/Crafting/GridRecipe.cs startLine: 69 @@ -271,8 +271,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/GridRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShowInCreatedBy path: Common/Crafting/GridRecipe.cs startLine: 74 @@ -300,8 +300,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/GridRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Output path: Common/Crafting/GridRecipe.cs startLine: 79 @@ -329,8 +329,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/GridRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Shapeless path: Common/Crafting/GridRecipe.cs startLine: 84 @@ -358,8 +358,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/GridRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Name path: Common/Crafting/GridRecipe.cs startLine: 89 @@ -387,8 +387,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/GridRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Attributes path: Common/Crafting/GridRecipe.cs startLine: 95 @@ -428,8 +428,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/GridRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RequiresTrait path: Common/Crafting/GridRecipe.cs startLine: 100 @@ -457,8 +457,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/GridRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AverageDurability path: Common/Crafting/GridRecipe.cs startLine: 105 @@ -486,8 +486,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/GridRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CopyAttributesFrom path: Common/Crafting/GridRecipe.cs startLine: 110 @@ -515,8 +515,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/GridRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: resolvedIngredients path: Common/Crafting/GridRecipe.cs startLine: 113 @@ -542,8 +542,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/GridRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ResolveIngredients path: Common/Crafting/GridRecipe.cs startLine: 123 @@ -577,8 +577,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/GridRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetNameToCodeMapping path: Common/Crafting/GridRecipe.cs startLine: 177 @@ -612,8 +612,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/GridRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ConsumeInput path: Common/Crafting/GridRecipe.cs startLine: 238 @@ -658,8 +658,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/GridRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Matches path: Common/Crafting/GridRecipe.cs startLine: 388 @@ -702,8 +702,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/GridRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MatchesAtPosition path: Common/Crafting/GridRecipe.cs startLine: 519 @@ -742,8 +742,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/GridRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetInputStackForPatternCode path: Common/Crafting/GridRecipe.cs startLine: 549 @@ -783,8 +783,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/GridRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GenerateOutputStack path: Common/Crafting/GridRecipe.cs startLine: 565 @@ -817,8 +817,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/GridRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetElementInGrid path: Common/Crafting/GridRecipe.cs startLine: 584 @@ -859,8 +859,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/GridRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetGridIndex path: Common/Crafting/GridRecipe.cs startLine: 592 @@ -901,8 +901,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/GridRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Common/Crafting/GridRecipe.cs startLine: 606 @@ -935,8 +935,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/GridRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Crafting/GridRecipe.cs startLine: 664 @@ -972,8 +972,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/GridRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Crafting/GridRecipe.cs startLine: 721 diff --git a/api/Vintagestory.API.Common.GridRecipeIngredient.yml b/api/Vintagestory.API.Common.GridRecipeIngredient.yml index 83bea663..52491413 100644 --- a/api/Vintagestory.API.Common.GridRecipeIngredient.yml +++ b/api/Vintagestory.API.Common.GridRecipeIngredient.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/GridRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GridRecipeIngredient path: Common/Crafting/GridRecipe.cs startLine: 12 @@ -74,8 +74,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/GridRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PatternCode path: Common/Crafting/GridRecipe.cs startLine: 14 @@ -101,8 +101,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/GridRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Common/Crafting/GridRecipe.cs startLine: 16 @@ -132,8 +132,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/GridRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Crafting/GridRecipe.cs startLine: 22 diff --git a/api/Vintagestory.API.Common.GrindingProperties.yml b/api/Vintagestory.API.Common.GrindingProperties.yml index d79a39dd..b8e36ce5 100644 --- a/api/Vintagestory.API.Common.GrindingProperties.yml +++ b/api/Vintagestory.API.Common.GrindingProperties.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/GrindingProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GrindingProperties path: Common/Collectible/GrindingProperties.cs startLine: 4 @@ -54,8 +54,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/GrindingProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: usedObsoleteNotation path: Common/Collectible/GrindingProperties.cs startLine: 6 @@ -81,8 +81,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/GrindingProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GroundStack path: Common/Collectible/GrindingProperties.cs startLine: 11 @@ -110,8 +110,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/GrindingProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GrindedStack path: Common/Collectible/GrindingProperties.cs startLine: 13 @@ -151,8 +151,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/GrindingProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Collectible/GrindingProperties.cs startLine: 30 diff --git a/api/Vintagestory.API.Common.HeldSounds.yml b/api/Vintagestory.API.Common.HeldSounds.yml index bc322653..a32b7004 100644 --- a/api/Vintagestory.API.Common.HeldSounds.yml +++ b/api/Vintagestory.API.Common.HeldSounds.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/HeldSounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HeldSounds path: Common/Collectible/HeldSounds.cs startLine: 4 @@ -56,8 +56,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/HeldSounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Idle path: Common/Collectible/HeldSounds.cs startLine: 6 @@ -83,8 +83,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/HeldSounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equip path: Common/Collectible/HeldSounds.cs startLine: 7 @@ -110,8 +110,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/HeldSounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Unequip path: Common/Collectible/HeldSounds.cs startLine: 8 @@ -137,8 +137,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/HeldSounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Attack path: Common/Collectible/HeldSounds.cs startLine: 9 @@ -164,8 +164,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/HeldSounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Collectible/HeldSounds.cs startLine: 16 @@ -195,8 +195,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/HeldSounds.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnDeserializedMethod path: Common/Collectible/HeldSounds.cs startLine: 31 diff --git a/api/Vintagestory.API.Common.HemisphereDelegate.yml b/api/Vintagestory.API.Common.HemisphereDelegate.yml index 2cc3e1c9..db9037d9 100644 --- a/api/Vintagestory.API.Common.HemisphereDelegate.yml +++ b/api/Vintagestory.API.Common.HemisphereDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HemisphereDelegate path: Common/API/IGameCalendar.cs startLine: 119 diff --git a/api/Vintagestory.API.Common.HistoryState.yml b/api/Vintagestory.API.Common.HistoryState.yml index dc0ce60a..553c4402 100644 --- a/api/Vintagestory.API.Common.HistoryState.yml +++ b/api/Vintagestory.API.Common.HistoryState.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessorRevertable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HistoryState path: Common/API/IBlockAccessorRevertable.cs startLine: 7 @@ -57,8 +57,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessorRevertable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Empty path: Common/API/IBlockAccessorRevertable.cs startLine: 9 @@ -85,8 +85,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessorRevertable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockUpdates path: Common/API/IBlockAccessorRevertable.cs startLine: 11 @@ -112,8 +112,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessorRevertable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OldStartMarker path: Common/API/IBlockAccessorRevertable.cs startLine: 12 @@ -139,8 +139,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessorRevertable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OldEndMarker path: Common/API/IBlockAccessorRevertable.cs startLine: 13 @@ -166,8 +166,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessorRevertable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NewStartMarker path: Common/API/IBlockAccessorRevertable.cs startLine: 15 @@ -193,8 +193,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessorRevertable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NewEndMarker path: Common/API/IBlockAccessorRevertable.cs startLine: 16 @@ -220,8 +220,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessorRevertable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityUpdates path: Common/API/IBlockAccessorRevertable.cs startLine: 17 diff --git a/api/Vintagestory.API.Common.HitEntityDelegate.yml b/api/Vintagestory.API.Common.HitEntityDelegate.yml index 641af5a7..1d25f975 100644 --- a/api/Vintagestory.API.Common.HitEntityDelegate.yml +++ b/api/Vintagestory.API.Common.HitEntityDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HitEntityDelegate path: Common/API/Delegates.cs startLine: 110 diff --git a/api/Vintagestory.API.Common.IAmbientManager.yml b/api/Vintagestory.API.Common.IAmbientManager.yml index a9720091..2e8192ea 100644 --- a/api/Vintagestory.API.Common.IAmbientManager.yml +++ b/api/Vintagestory.API.Common.IAmbientManager.yml @@ -28,8 +28,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IAmbientManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IAmbientManager path: Client/API/IAmbientManager.cs startLine: 12 @@ -64,8 +64,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IAmbientManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Base path: Client/API/IAmbientManager.cs startLine: 17 @@ -95,8 +95,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IAmbientManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentModifiers path: Client/API/IAmbientManager.cs startLine: 22 @@ -126,8 +126,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IAmbientManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlendedFogColor path: Client/API/IAmbientManager.cs startLine: 28 @@ -157,8 +157,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IAmbientManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlendedAmbientColor path: Client/API/IAmbientManager.cs startLine: 33 @@ -188,8 +188,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IAmbientManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlendedFogDensity path: Client/API/IAmbientManager.cs startLine: 38 @@ -219,8 +219,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IAmbientManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlendedFogBrightness path: Client/API/IAmbientManager.cs startLine: 40 @@ -248,8 +248,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IAmbientManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlendedFlatFogDensity path: Client/API/IAmbientManager.cs startLine: 45 @@ -279,8 +279,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IAmbientManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlendedFlatFogYOffset path: Client/API/IAmbientManager.cs startLine: 50 @@ -310,8 +310,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IAmbientManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlendedFlatFogYPosForShader path: Client/API/IAmbientManager.cs startLine: 55 @@ -341,8 +341,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IAmbientManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlendedFogMin path: Client/API/IAmbientManager.cs startLine: 60 @@ -372,8 +372,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IAmbientManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlendedCloudBrightness path: Client/API/IAmbientManager.cs startLine: 64 @@ -403,8 +403,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IAmbientManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlendedCloudDensity path: Client/API/IAmbientManager.cs startLine: 68 @@ -434,8 +434,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IAmbientManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UpdateAmbient path: Client/API/IAmbientManager.cs startLine: 74 diff --git a/api/Vintagestory.API.Common.IAnimationManager.yml b/api/Vintagestory.API.Common.IAnimationManager.yml index 31f6696b..296fc454 100644 --- a/api/Vintagestory.API.Common.IAnimationManager.yml +++ b/api/Vintagestory.API.Common.IAnimationManager.yml @@ -32,8 +32,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/IAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IAnimationManager path: Common/Model/Animation/IAnimator.cs startLine: 79 @@ -64,8 +64,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/IAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Animator path: Common/Model/Animation/IAnimator.cs startLine: 84 @@ -95,8 +95,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/IAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HeadController path: Common/Model/Animation/IAnimator.cs startLine: 89 @@ -126,8 +126,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/IAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Init path: Common/Model/Animation/IAnimator.cs startLine: 96 @@ -161,8 +161,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/IAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AnimationsDirty path: Common/Model/Animation/IAnimator.cs startLine: 101 @@ -192,8 +192,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/IAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsAnimationActive path: Common/Model/Animation/IAnimator.cs startLine: 103 @@ -226,8 +226,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/IAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartAnimation path: Common/Model/Animation/IAnimator.cs startLine: 110 @@ -261,8 +261,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/IAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartAnimation path: Common/Model/Animation/IAnimator.cs startLine: 117 @@ -299,8 +299,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/IAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StopAnimation path: Common/Model/Animation/IAnimator.cs startLine: 123 @@ -334,8 +334,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/IAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromAttributes path: Common/Model/Animation/IAnimator.cs startLine: 130 @@ -372,8 +372,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/IAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToAttributes path: Common/Model/Animation/IAnimator.cs startLine: 137 @@ -410,8 +410,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/IAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ActiveAnimationsByAnimCode path: Common/Model/Animation/IAnimator.cs startLine: 142 @@ -441,8 +441,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/IAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnReceivedServerAnimations path: Common/Model/Animation/IAnimator.cs startLine: 150 @@ -482,8 +482,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/IAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnAnimationStopped path: Common/Model/Animation/IAnimator.cs startLine: 157 @@ -517,8 +517,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/IAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnServerTick path: Common/Model/Animation/IAnimator.cs startLine: 159 @@ -549,8 +549,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/IAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnClientFrame path: Common/Model/Animation/IAnimator.cs startLine: 162 @@ -581,8 +581,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/IAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ResetAnimation path: Common/Model/Animation/IAnimator.cs startLine: 168 @@ -616,8 +616,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/IAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterFrameCallback path: Common/Model/Animation/IAnimator.cs startLine: 170 diff --git a/api/Vintagestory.API.Common.IAnimator.yml b/api/Vintagestory.API.Common.IAnimator.yml index f81cd1fb..99e27e3a 100644 --- a/api/Vintagestory.API.Common.IAnimator.yml +++ b/api/Vintagestory.API.Common.IAnimator.yml @@ -24,8 +24,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/IAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IAnimator path: Common/Model/Animation/IAnimator.cs startLine: 32 @@ -49,8 +49,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/IAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Matrices4x3 path: Common/Model/Animation/IAnimator.cs startLine: 37 @@ -80,8 +80,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/IAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ActiveAnimationCount path: Common/Model/Animation/IAnimator.cs startLine: 42 @@ -111,8 +111,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/IAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RunningAnimations path: Common/Model/Animation/IAnimator.cs startLine: 47 @@ -142,8 +142,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/IAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAnimationState path: Common/Model/Animation/IAnimator.cs startLine: 49 @@ -176,8 +176,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/IAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CalculateMatrices path: Common/Model/Animation/IAnimator.cs startLine: 54 @@ -207,8 +207,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/IAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAttachmentPointPose path: Common/Model/Animation/IAnimator.cs startLine: 61 @@ -245,8 +245,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/IAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetPosebyName path: Common/Model/Animation/IAnimator.cs startLine: 63 @@ -281,8 +281,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/IAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnFrame path: Common/Model/Animation/IAnimator.cs startLine: 70 @@ -319,8 +319,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/IAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DumpCurrentState path: Common/Model/Animation/IAnimator.cs startLine: 72 diff --git a/api/Vintagestory.API.Common.IAsset.yml b/api/Vintagestory.API.Common.IAsset.yml index 2360c834..4dd3f21f 100644 --- a/api/Vintagestory.API.Common.IAsset.yml +++ b/api/Vintagestory.API.Common.IAsset.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/IAsset.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IAsset path: Common/Assets/IAsset.cs startLine: 8 @@ -50,8 +50,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/IAsset.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Name path: Common/Assets/IAsset.cs startLine: 14 @@ -81,8 +81,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/IAsset.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Location path: Common/Assets/IAsset.cs startLine: 19 @@ -112,8 +112,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/IAsset.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Origin path: Common/Assets/IAsset.cs startLine: 24 @@ -143,8 +143,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/IAsset.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Data path: Common/Assets/IAsset.cs startLine: 29 @@ -174,8 +174,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/IAsset.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToObject path: Common/Assets/IAsset.cs startLine: 37 @@ -215,8 +215,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/IAsset.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToText path: Common/Assets/IAsset.cs startLine: 43 @@ -246,8 +246,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/IAsset.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBitmap path: Common/Assets/IAsset.cs startLine: 50 @@ -281,8 +281,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/IAsset.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsLoaded path: Common/Assets/IAsset.cs startLine: 56 diff --git a/api/Vintagestory.API.Common.IAssetManager.yml b/api/Vintagestory.API.Common.IAssetManager.yml index 91b0c3fd..05fadf2b 100644 --- a/api/Vintagestory.API.Common.IAssetManager.yml +++ b/api/Vintagestory.API.Common.IAssetManager.yml @@ -32,8 +32,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/IAssetManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IAssetManager path: Common/Assets/IAssetManager.cs startLine: 14 @@ -59,8 +59,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/IAssetManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AllAssets path: Common/Assets/IAssetManager.cs startLine: 19 @@ -90,8 +90,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/IAssetManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Exists path: Common/Assets/IAssetManager.cs startLine: 26 @@ -125,8 +125,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/IAssetManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Common/Assets/IAssetManager.cs startLine: 33 @@ -160,8 +160,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/IAssetManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Get path: Common/Assets/IAssetManager.cs startLine: 40 @@ -198,8 +198,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/IAssetManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Get path: Common/Assets/IAssetManager.cs startLine: 47 @@ -233,8 +233,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/IAssetManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryGet path: Common/Assets/IAssetManager.cs startLine: 56 @@ -277,8 +277,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/IAssetManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryGet path: Common/Assets/IAssetManager.cs startLine: 65 @@ -321,8 +321,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/IAssetManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMany path: Common/Assets/IAssetManager.cs startLine: 74 @@ -365,8 +365,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/IAssetManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetManyInCategory path: Common/Assets/IAssetManager.cs startLine: 76 @@ -405,8 +405,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/IAssetManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMany path: Common/Assets/IAssetManager.cs startLine: 87 @@ -455,8 +455,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/IAssetManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetLocations path: Common/Assets/IAssetManager.cs startLine: 97 @@ -496,8 +496,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/IAssetManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Get path: Common/Assets/IAssetManager.cs startLine: 106 @@ -537,8 +537,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/IAssetManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Reload path: Common/Assets/IAssetManager.cs startLine: 113 @@ -572,8 +572,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/IAssetManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Reload path: Common/Assets/IAssetManager.cs startLine: 120 @@ -607,8 +607,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/IAssetManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Origins path: Common/Assets/IAssetManager.cs startLine: 126 @@ -639,8 +639,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/IAssetManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddPathOrigin path: Common/Assets/IAssetManager.cs startLine: 129 @@ -685,8 +685,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/IAssetManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddModOrigin path: Common/Assets/IAssetManager.cs startLine: 131 diff --git a/api/Vintagestory.API.Common.IAssetOrigin.yml b/api/Vintagestory.API.Common.IAssetOrigin.yml index ecac9af0..188afe3c 100644 --- a/api/Vintagestory.API.Common.IAssetOrigin.yml +++ b/api/Vintagestory.API.Common.IAssetOrigin.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/IAssetOrigin.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IAssetOrigin path: Common/Assets/IAssetOrigin.cs startLine: 4 @@ -46,8 +46,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/IAssetOrigin.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OriginPath path: Common/Assets/IAssetOrigin.cs startLine: 6 @@ -75,8 +75,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/IAssetOrigin.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadAsset path: Common/Assets/IAssetOrigin.cs startLine: 13 @@ -107,8 +107,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/IAssetOrigin.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryLoadAsset path: Common/Assets/IAssetOrigin.cs startLine: 20 @@ -142,8 +142,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/IAssetOrigin.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAssets path: Common/Assets/IAssetOrigin.cs startLine: 28 @@ -183,8 +183,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/IAssetOrigin.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAssets path: Common/Assets/IAssetOrigin.cs startLine: 37 @@ -224,8 +224,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/IAssetOrigin.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsAllowedToAffectGameplay path: Common/Assets/IAssetOrigin.cs startLine: 44 diff --git a/api/Vintagestory.API.Common.IBitmap.yml b/api/Vintagestory.API.Common.IBitmap.yml index 9086a2b1..21517d1c 100644 --- a/api/Vintagestory.API.Common.IBitmap.yml +++ b/api/Vintagestory.API.Common.IBitmap.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IBitmap path: Common/Texture/BitmapRef.cs startLine: 5 @@ -46,8 +46,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetPixel path: Common/Texture/BitmapRef.cs startLine: 7 @@ -82,8 +82,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetPixelRel path: Common/Texture/BitmapRef.cs startLine: 8 @@ -118,8 +118,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Width path: Common/Texture/BitmapRef.cs startLine: 10 @@ -147,8 +147,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Height path: Common/Texture/BitmapRef.cs startLine: 11 @@ -176,8 +176,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pixels path: Common/Texture/BitmapRef.cs startLine: 13 @@ -205,8 +205,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetPixelsTransformed path: Common/Texture/BitmapRef.cs startLine: 15 diff --git a/api/Vintagestory.API.Common.IBlockAccessor.yml b/api/Vintagestory.API.Common.IBlockAccessor.yml index 8517bffe..236e460b 100644 --- a/api/Vintagestory.API.Common.IBlockAccessor.yml +++ b/api/Vintagestory.API.Common.IBlockAccessor.yml @@ -95,8 +95,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IBlockAccessor path: Common/API/IBlockAccessor.cs startLine: 156 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChunkSize path: Common/API/IBlockAccessor.cs startLine: 161 @@ -153,8 +153,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegionSize path: Common/API/IBlockAccessor.cs startLine: 166 @@ -184,8 +184,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MapSizeX path: Common/API/IBlockAccessor.cs startLine: 171 @@ -215,8 +215,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MapSizeY path: Common/API/IBlockAccessor.cs startLine: 176 @@ -246,8 +246,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MapSizeZ path: Common/API/IBlockAccessor.cs startLine: 181 @@ -277,8 +277,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegionMapSizeX path: Common/API/IBlockAccessor.cs startLine: 184 @@ -306,8 +306,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegionMapSizeY path: Common/API/IBlockAccessor.cs startLine: 185 @@ -335,8 +335,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegionMapSizeZ path: Common/API/IBlockAccessor.cs startLine: 186 @@ -364,8 +364,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UpdateSnowAccumMap path: Common/API/IBlockAccessor.cs startLine: 191 @@ -395,8 +395,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MapSize path: Common/API/IBlockAccessor.cs startLine: 196 @@ -426,8 +426,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetChunk path: Common/API/IBlockAccessor.cs startLine: 207 @@ -473,8 +473,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetChunk path: Common/API/IBlockAccessor.cs startLine: 214 @@ -511,8 +511,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMapRegion path: Common/API/IBlockAccessor.cs startLine: 222 @@ -552,8 +552,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetChunkAtBlockPos path: Common/API/IBlockAccessor.cs startLine: 233 @@ -608,8 +608,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetChunkAtBlockPos path: Common/API/IBlockAccessor.cs startLine: 241 @@ -643,8 +643,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlockId path: Common/API/IBlockAccessor.cs startLine: 251 @@ -699,8 +699,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlockId path: Common/API/IBlockAccessor.cs startLine: 259 @@ -734,8 +734,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlock path: Common/API/IBlockAccessor.cs startLine: 269 @@ -793,8 +793,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlock path: Common/API/IBlockAccessor.cs startLine: 278 @@ -831,8 +831,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlock path: Common/API/IBlockAccessor.cs startLine: 289 @@ -893,8 +893,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlock path: Common/API/IBlockAccessor.cs startLine: 299 @@ -937,8 +937,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlockOrNull path: Common/API/IBlockAccessor.cs startLine: 310 @@ -996,8 +996,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMostSolidBlock path: Common/API/IBlockAccessor.cs startLine: 322 @@ -1052,8 +1052,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMostSolidBlock path: Common/API/IBlockAccessor.cs startLine: 330 @@ -1087,8 +1087,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WalkBlocks path: Common/API/IBlockAccessor.cs startLine: 341 @@ -1134,8 +1134,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SearchBlocks path: Common/API/IBlockAccessor.cs startLine: 351 @@ -1181,8 +1181,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SearchFluidBlocks path: Common/API/IBlockAccessor.cs startLine: 361 @@ -1228,8 +1228,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WalkStructures path: Common/API/IBlockAccessor.cs startLine: 368 @@ -1266,8 +1266,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WalkStructures path: Common/API/IBlockAccessor.cs startLine: 376 @@ -1307,8 +1307,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetBlock path: Common/API/IBlockAccessor.cs startLine: 384 @@ -1348,8 +1348,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetBlock path: Common/API/IBlockAccessor.cs startLine: 392 @@ -1389,8 +1389,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetBlock path: Common/API/IBlockAccessor.cs startLine: 401 @@ -1433,8 +1433,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExchangeBlock path: Common/API/IBlockAccessor.cs startLine: 407 @@ -1472,8 +1472,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BreakBlock path: Common/API/IBlockAccessor.cs startLine: 416 @@ -1513,8 +1513,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DamageBlock path: Common/API/IBlockAccessor.cs startLine: 426 @@ -1557,8 +1557,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlock path: Common/API/IBlockAccessor.cs startLine: 433 @@ -1595,8 +1595,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlock path: Common/API/IBlockAccessor.cs startLine: 441 @@ -1630,8 +1630,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SpawnBlockEntity path: Common/API/IBlockAccessor.cs startLine: 451 @@ -1671,8 +1671,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SpawnBlockEntity path: Common/API/IBlockAccessor.cs startLine: 457 @@ -1703,8 +1703,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveBlockEntity path: Common/API/IBlockAccessor.cs startLine: 464 @@ -1735,8 +1735,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlockEntity path: Common/API/IBlockAccessor.cs startLine: 471 @@ -1770,8 +1770,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlockEntity path: Common/API/IBlockAccessor.cs startLine: 479 @@ -1811,8 +1811,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsValidPos path: Common/API/IBlockAccessor.cs startLine: 490 @@ -1867,8 +1867,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsValidPos path: Common/API/IBlockAccessor.cs startLine: 498 @@ -1902,8 +1902,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsNotTraversable path: Common/API/IBlockAccessor.cs startLine: 507 @@ -1946,8 +1946,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsNotTraversable path: Common/API/IBlockAccessor.cs startLine: 514 @@ -1981,8 +1981,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Commit path: Common/API/IBlockAccessor.cs startLine: 524 @@ -2019,8 +2019,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rollback path: Common/API/IBlockAccessor.cs startLine: 529 @@ -2047,8 +2047,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MarkBlockEntityDirty path: Common/API/IBlockAccessor.cs startLine: 537 @@ -2082,8 +2082,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TriggerNeighbourBlockUpdate path: Common/API/IBlockAccessor.cs startLine: 543 @@ -2114,8 +2114,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MarkBlockDirty path: Common/API/IBlockAccessor.cs startLine: 551 @@ -2152,8 +2152,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MarkBlockModified path: Common/API/IBlockAccessor.cs startLine: 558 @@ -2187,8 +2187,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MarkBlockDirty path: Common/API/IBlockAccessor.cs startLine: 566 @@ -2225,8 +2225,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetLightLevel path: Common/API/IBlockAccessor.cs startLine: 574 @@ -2263,8 +2263,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetLightLevel path: Common/API/IBlockAccessor.cs startLine: 585 @@ -2313,8 +2313,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetLightRGBs path: Common/API/IBlockAccessor.cs startLine: 595 @@ -2360,8 +2360,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetLightRGBs path: Common/API/IBlockAccessor.cs startLine: 602 @@ -2395,8 +2395,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetLightRGBsAsInt path: Common/API/IBlockAccessor.cs startLine: 611 @@ -2439,8 +2439,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetTerrainMapheightAt path: Common/API/IBlockAccessor.cs startLine: 619 @@ -2477,8 +2477,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRainMapHeightAt path: Common/API/IBlockAccessor.cs startLine: 627 @@ -2515,8 +2515,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDistanceToRainFall path: Common/API/IBlockAccessor.cs startLine: 636 @@ -2559,8 +2559,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRainMapHeightAt path: Common/API/IBlockAccessor.cs startLine: 645 @@ -2603,8 +2603,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMapChunk path: Common/API/IBlockAccessor.cs startLine: 653 @@ -2638,8 +2638,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMapChunk path: Common/API/IBlockAccessor.cs startLine: 661 @@ -2679,8 +2679,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMapChunkAtBlockPos path: Common/API/IBlockAccessor.cs startLine: 668 @@ -2714,8 +2714,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetClimateAt path: Common/API/IBlockAccessor.cs startLine: 677 @@ -2758,8 +2758,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetClimateAt path: Common/API/IBlockAccessor.cs startLine: 682 @@ -2800,8 +2800,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetClimateAt path: Common/API/IBlockAccessor.cs startLine: 690 @@ -2841,8 +2841,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetWindSpeedAt path: Common/API/IBlockAccessor.cs startLine: 697 @@ -2876,8 +2876,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetWindSpeedAt path: Common/API/IBlockAccessor.cs startLine: 704 @@ -2911,8 +2911,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MarkAbsorptionChanged path: Common/API/IBlockAccessor.cs startLine: 712 @@ -2952,8 +2952,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveBlockLight path: Common/API/IBlockAccessor.cs startLine: 719 @@ -2990,8 +2990,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetDecor path: Common/API/IBlockAccessor.cs startLine: 731 @@ -3031,8 +3031,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetDecor path: Common/API/IBlockAccessor.cs startLine: 740 @@ -3075,8 +3075,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDecors path: Common/API/IBlockAccessor.cs startLine: 747 @@ -3110,8 +3110,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDecor path: Common/API/IBlockAccessor.cs startLine: 755 @@ -3151,8 +3151,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BreakDecor path: Common/API/IBlockAccessor.cs startLine: 764 @@ -3195,8 +3195,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MarkChunkDecorsModified path: Common/API/IBlockAccessor.cs startLine: 773 @@ -3230,8 +3230,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsSideSolid path: Common/API/IBlockAccessor.cs startLine: 785 @@ -3277,8 +3277,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateMiniDimension path: Common/API/IBlockAccessor.cs startLine: 790 diff --git a/api/Vintagestory.API.Common.IBlockAccessorPrefetch.yml b/api/Vintagestory.API.Common.IBlockAccessorPrefetch.yml index 0be5a70a..d6245255 100644 --- a/api/Vintagestory.API.Common.IBlockAccessorPrefetch.yml +++ b/api/Vintagestory.API.Common.IBlockAccessorPrefetch.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessorPrefetch.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IBlockAccessorPrefetch path: Common/API/IBlockAccessorPrefetch.cs startLine: 7 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessorPrefetch.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PrefetchBlocks path: Common/API/IBlockAccessorPrefetch.cs startLine: 15 diff --git a/api/Vintagestory.API.Common.IBlockAccessorRevertable.yml b/api/Vintagestory.API.Common.IBlockAccessorRevertable.yml index edbabb60..47f9572f 100644 --- a/api/Vintagestory.API.Common.IBlockAccessorRevertable.yml +++ b/api/Vintagestory.API.Common.IBlockAccessorRevertable.yml @@ -29,8 +29,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessorRevertable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IBlockAccessorRevertable path: Common/API/IBlockAccessorRevertable.cs startLine: 24 @@ -145,8 +145,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessorRevertable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnStoreHistoryState path: Common/API/IBlockAccessorRevertable.cs startLine: 26 @@ -172,8 +172,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessorRevertable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnRestoreHistoryState path: Common/API/IBlockAccessorRevertable.cs startLine: 27 @@ -199,8 +199,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessorRevertable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Relight path: Common/API/IBlockAccessorRevertable.cs startLine: 32 @@ -230,8 +230,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessorRevertable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentHistoryState path: Common/API/IBlockAccessorRevertable.cs startLine: 37 @@ -261,8 +261,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessorRevertable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChangeHistoryState path: Common/API/IBlockAccessorRevertable.cs startLine: 43 @@ -298,8 +298,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessorRevertable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: QuantityHistoryStates path: Common/API/IBlockAccessorRevertable.cs startLine: 48 @@ -329,8 +329,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessorRevertable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AvailableHistoryStates path: Common/API/IBlockAccessorRevertable.cs startLine: 53 @@ -360,8 +360,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessorRevertable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetHistoryStateBlock path: Common/API/IBlockAccessorRevertable.cs startLine: 63 @@ -407,8 +407,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessorRevertable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CommitBlockEntityData path: Common/API/IBlockAccessorRevertable.cs startLine: 65 @@ -433,8 +433,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessorRevertable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeginMultiEdit path: Common/API/IBlockAccessorRevertable.cs startLine: 67 @@ -459,8 +459,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessorRevertable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EndMultiEdit path: Common/API/IBlockAccessorRevertable.cs startLine: 69 @@ -485,8 +485,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessorRevertable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StoreHistoryState path: Common/API/IBlockAccessorRevertable.cs startLine: 71 @@ -514,8 +514,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessorRevertable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StoreEntitySpawnToHistory path: Common/API/IBlockAccessorRevertable.cs startLine: 73 @@ -543,8 +543,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessorRevertable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StoreEntityMoveToHistory path: Common/API/IBlockAccessorRevertable.cs startLine: 75 diff --git a/api/Vintagestory.API.Common.IBlockEntityContainer.yml b/api/Vintagestory.API.Common.IBlockEntityContainer.yml index 1a43678f..b772993a 100644 --- a/api/Vintagestory.API.Common.IBlockEntityContainer.yml +++ b/api/Vintagestory.API.Common.IBlockEntityContainer.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/IBlockEntityContainer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IBlockEntityContainer path: Common/Collectible/IBlockEntityContainer.cs startLine: 4 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/IBlockEntityContainer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Inventory path: Common/Collectible/IBlockEntityContainer.cs startLine: 9 @@ -74,8 +74,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/IBlockEntityContainer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InventoryClassName path: Common/Collectible/IBlockEntityContainer.cs startLine: 14 @@ -105,8 +105,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/IBlockEntityContainer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DropContents path: Common/Collectible/IBlockEntityContainer.cs startLine: 19 diff --git a/api/Vintagestory.API.Common.IBlockFlowing.yml b/api/Vintagestory.API.Common.IBlockFlowing.yml index 6f056fbe..8c1ed226 100644 --- a/api/Vintagestory.API.Common.IBlockFlowing.yml +++ b/api/Vintagestory.API.Common.IBlockFlowing.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/IBlockFlowing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IBlockFlowing path: Common/Collectible/Block/IBlockFlowing.cs startLine: 2 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/IBlockFlowing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Flow path: Common/Collectible/Block/IBlockFlowing.cs startLine: 4 @@ -72,8 +72,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/IBlockFlowing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FlowNormali path: Common/Collectible/Block/IBlockFlowing.cs startLine: 5 @@ -101,8 +101,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/IBlockFlowing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsLava path: Common/Collectible/Block/IBlockFlowing.cs startLine: 6 diff --git a/api/Vintagestory.API.Common.IBlockShapeSupplier.yml b/api/Vintagestory.API.Common.IBlockShapeSupplier.yml index fcbcee57..dadc4ea8 100644 --- a/api/Vintagestory.API.Common.IBlockShapeSupplier.yml +++ b/api/Vintagestory.API.Common.IBlockShapeSupplier.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/IBlockShapeSupplier.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IBlockShapeSupplier path: Common/Model/Shape/IBlockShapeSupplier.cs startLine: 8 diff --git a/api/Vintagestory.API.Common.IBulkBlockAccessor.yml b/api/Vintagestory.API.Common.IBulkBlockAccessor.yml index 503c8e3d..8a785f96 100644 --- a/api/Vintagestory.API.Common.IBulkBlockAccessor.yml +++ b/api/Vintagestory.API.Common.IBulkBlockAccessor.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBulkBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IBulkBlockAccessor path: Common/API/IBulkBlockAccessor.cs startLine: 10 @@ -131,8 +131,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBulkBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeforeCommit path: Common/API/IBulkBlockAccessor.cs startLine: 12 @@ -158,8 +158,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBulkBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StagedBlocks path: Common/API/IBulkBlockAccessor.cs startLine: 17 @@ -189,8 +189,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBulkBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReadFromStagedByDefault path: Common/API/IBulkBlockAccessor.cs startLine: 22 @@ -220,8 +220,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBulkBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetStagedBlockId path: Common/API/IBulkBlockAccessor.cs startLine: 31 @@ -264,8 +264,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBulkBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetStagedBlockId path: Common/API/IBulkBlockAccessor.cs startLine: 38 @@ -299,8 +299,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBulkBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetChunks path: Common/API/IBulkBlockAccessor.cs startLine: 43 @@ -335,8 +335,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBulkBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetDecorsBulk path: Common/API/IBulkBlockAccessor.cs startLine: 44 @@ -369,8 +369,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBulkBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PostCommitCleanup path: Common/API/IBulkBlockAccessor.cs startLine: 50 diff --git a/api/Vintagestory.API.Common.IByteSerializable.yml b/api/Vintagestory.API.Common.IByteSerializable.yml index d34439e4..fc1d18b4 100644 --- a/api/Vintagestory.API.Common.IByteSerializable.yml +++ b/api/Vintagestory.API.Common.IByteSerializable.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Common/ByteSerializable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IByteSerializable path: Common/ByteSerializable.cs startLine: 4 @@ -42,8 +42,8 @@ items: source: remote: path: VintagestoryApi/Common/ByteSerializable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Common/ByteSerializable.cs startLine: 6 @@ -71,8 +71,8 @@ items: source: remote: path: VintagestoryApi/Common/ByteSerializable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/ByteSerializable.cs startLine: 8 diff --git a/api/Vintagestory.API.Common.ICachingBlockAccessor.yml b/api/Vintagestory.API.Common.ICachingBlockAccessor.yml index 16e49e37..60706384 100644 --- a/api/Vintagestory.API.Common.ICachingBlockAccessor.yml +++ b/api/Vintagestory.API.Common.ICachingBlockAccessor.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ICachingBlockAccessor path: Common/API/IBlockAccessor.cs startLine: 143 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LastChunkLoaded path: Common/API/IBlockAccessor.cs startLine: 148 @@ -155,8 +155,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Begin path: Common/API/IBlockAccessor.cs startLine: 149 @@ -181,8 +181,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Common/API/IBlockAccessor.cs startLine: 150 diff --git a/api/Vintagestory.API.Common.IChatCommand.yml b/api/Vintagestory.API.Common.IChatCommand.yml index 65ccbf3d..44cd75d2 100644 --- a/api/Vintagestory.API.Common.IChatCommand.yml +++ b/api/Vintagestory.API.Common.IChatCommand.yml @@ -54,8 +54,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IChatCommand path: Common/API/ChatCommand/IChatCommand.cs startLine: 6 @@ -84,8 +84,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FullName path: Common/API/ChatCommand/IChatCommand.cs startLine: 11 @@ -115,8 +115,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Name path: Common/API/ChatCommand/IChatCommand.cs startLine: 16 @@ -146,8 +146,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Description path: Common/API/ChatCommand/IChatCommand.cs startLine: 21 @@ -177,8 +177,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AdditionalInformation path: Common/API/ChatCommand/IChatCommand.cs startLine: 26 @@ -208,8 +208,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Examples path: Common/API/ChatCommand/IChatCommand.cs startLine: 31 @@ -239,8 +239,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Incomplete path: Common/API/ChatCommand/IChatCommand.cs startLine: 36 @@ -270,8 +270,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Aliases path: Common/API/ChatCommand/IChatCommand.cs startLine: 41 @@ -301,8 +301,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RootAliases path: Common/API/ChatCommand/IChatCommand.cs startLine: 46 @@ -332,8 +332,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CommandPrefix path: Common/API/ChatCommand/IChatCommand.cs startLine: 51 @@ -363,8 +363,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Common/API/ChatCommand/IChatCommand.cs startLine: 58 @@ -401,8 +401,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithPreCondition path: Common/API/ChatCommand/IChatCommand.cs startLine: 64 @@ -436,8 +436,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithName path: Common/API/ChatCommand/IChatCommand.cs startLine: 70 @@ -474,8 +474,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithAlias path: Common/API/ChatCommand/IChatCommand.cs startLine: 76 @@ -512,8 +512,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithRootAlias path: Common/API/ChatCommand/IChatCommand.cs startLine: 82 @@ -550,8 +550,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithDescription path: Common/API/ChatCommand/IChatCommand.cs startLine: 88 @@ -588,8 +588,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithAdditionalInformation path: Common/API/ChatCommand/IChatCommand.cs startLine: 94 @@ -626,8 +626,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithExamples path: Common/API/ChatCommand/IChatCommand.cs startLine: 100 @@ -664,8 +664,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithArgs path: Common/API/ChatCommand/IChatCommand.cs startLine: 106 @@ -702,8 +702,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RequiresPrivilege path: Common/API/ChatCommand/IChatCommand.cs startLine: 112 @@ -740,8 +740,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RequiresPlayer path: Common/API/ChatCommand/IChatCommand.cs startLine: 118 @@ -771,8 +771,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeginSubCommand path: Common/API/ChatCommand/IChatCommand.cs startLine: 126 @@ -809,8 +809,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeginSubCommands path: Common/API/ChatCommand/IChatCommand.cs startLine: 133 @@ -847,8 +847,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EndSubCommand path: Common/API/ChatCommand/IChatCommand.cs startLine: 139 @@ -878,8 +878,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HandleWith path: Common/API/ChatCommand/IChatCommand.cs startLine: 145 @@ -913,8 +913,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Execute path: Common/API/ChatCommand/IChatCommand.cs startLine: 151 @@ -951,8 +951,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsAvailableTo path: Common/API/ChatCommand/IChatCommand.cs startLine: 157 @@ -986,8 +986,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Validate path: Common/API/ChatCommand/IChatCommand.cs startLine: 161 @@ -1014,8 +1014,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IgnoreAdditionalArgs path: Common/API/ChatCommand/IChatCommand.cs startLine: 162 @@ -1042,8 +1042,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Subcommands path: Common/API/ChatCommand/IChatCommand.cs startLine: 164 @@ -1071,8 +1071,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AllSubcommands path: Common/API/ChatCommand/IChatCommand.cs startLine: 165 @@ -1100,8 +1100,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetFullSyntaxConsole path: Common/API/ChatCommand/IChatCommand.cs startLine: 166 @@ -1131,8 +1131,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetFullSyntaxHandbook path: Common/API/ChatCommand/IChatCommand.cs startLine: 167 @@ -1169,8 +1169,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CallSyntax path: Common/API/ChatCommand/IChatCommand.cs startLine: 172 @@ -1200,8 +1200,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CallSyntaxUnformatted path: Common/API/ChatCommand/IChatCommand.cs startLine: 174 @@ -1229,8 +1229,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddParameterSyntax path: Common/API/ChatCommand/IChatCommand.cs startLine: 179 @@ -1265,8 +1265,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddSyntaxExplanation path: Common/API/ChatCommand/IChatCommand.cs startLine: 183 @@ -1301,8 +1301,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetFullName path: Common/API/ChatCommand/IChatCommand.cs startLine: 184 @@ -1337,8 +1337,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCallSyntax path: Common/API/ChatCommand/IChatCommand.cs startLine: 185 @@ -1373,8 +1373,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCallSyntaxUnformatted path: Common/API/ChatCommand/IChatCommand.cs startLine: 186 diff --git a/api/Vintagestory.API.Common.IChatCommandApi.yml b/api/Vintagestory.API.Common.IChatCommandApi.yml index 5c7fc802..9da05c93 100644 --- a/api/Vintagestory.API.Common.IChatCommandApi.yml +++ b/api/Vintagestory.API.Common.IChatCommandApi.yml @@ -25,8 +25,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IChatCommandApi path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 245 @@ -57,8 +57,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 247 @@ -91,8 +91,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Create path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 248 @@ -119,8 +119,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Create path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 249 @@ -153,8 +153,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Get path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 251 @@ -187,8 +187,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetOrCreate path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 252 @@ -221,8 +221,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Parsers path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 254 @@ -250,8 +250,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Execute path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 263 @@ -291,8 +291,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExecuteUnparsed path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 272 @@ -332,8 +332,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetOrdered path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 279 @@ -370,8 +370,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetOrdered path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 289 diff --git a/api/Vintagestory.API.Common.IChunkBlocks.yml b/api/Vintagestory.API.Common.IChunkBlocks.yml index 7ae63d4f..1d11d1d0 100644 --- a/api/Vintagestory.API.Common.IChunkBlocks.yml +++ b/api/Vintagestory.API.Common.IChunkBlocks.yml @@ -30,8 +30,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IChunkBlocks path: Common/API/IWorldChunk.cs startLine: 7 @@ -55,8 +55,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Common/API/IWorldChunk.cs startLine: 14 @@ -93,8 +93,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Length path: Common/API/IWorldChunk.cs startLine: 16 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClearBlocks path: Common/API/IWorldChunk.cs startLine: 18 @@ -148,8 +148,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClearBlocksAndPrepare path: Common/API/IWorldChunk.cs startLine: 22 @@ -176,8 +176,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetBlockBulk path: Common/API/IWorldChunk.cs startLine: 27 @@ -216,8 +216,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetBlockUnsafe path: Common/API/IWorldChunk.cs startLine: 33 @@ -254,8 +254,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetBlockAir path: Common/API/IWorldChunk.cs startLine: 34 @@ -286,8 +286,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetFluid path: Common/API/IWorldChunk.cs startLine: 40 @@ -324,8 +324,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlockId path: Common/API/IWorldChunk.cs startLine: 41 @@ -360,8 +360,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetFluid path: Common/API/IWorldChunk.cs startLine: 42 @@ -394,8 +394,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlockIdUnsafe path: Common/API/IWorldChunk.cs startLine: 48 @@ -431,8 +431,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TakeBulkReadLock path: Common/API/IWorldChunk.cs startLine: 53 @@ -459,8 +459,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReleaseBulkReadLock path: Common/API/IWorldChunk.cs startLine: 58 @@ -487,8 +487,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ContainsBlock path: Common/API/IWorldChunk.cs startLine: 64 @@ -526,8 +526,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FuzzyListBlockIds path: Common/API/IWorldChunk.cs startLine: 69 diff --git a/api/Vintagestory.API.Common.IChunkLight.yml b/api/Vintagestory.API.Common.IChunkLight.yml index 63c0b5fb..7fcf9ec6 100644 --- a/api/Vintagestory.API.Common.IChunkLight.yml +++ b/api/Vintagestory.API.Common.IChunkLight.yml @@ -25,8 +25,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IChunkLight path: Common/API/IWorldChunk.cs startLine: 72 @@ -50,8 +50,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSunlight path: Common/API/IWorldChunk.cs startLine: 74 @@ -84,8 +84,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetSunlight path: Common/API/IWorldChunk.cs startLine: 75 @@ -118,8 +118,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetSunlight_Buffered path: Common/API/IWorldChunk.cs startLine: 76 @@ -152,8 +152,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlocklight path: Common/API/IWorldChunk.cs startLine: 77 @@ -186,8 +186,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetBlocklight path: Common/API/IWorldChunk.cs startLine: 78 @@ -220,8 +220,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetBlocklight_Buffered path: Common/API/IWorldChunk.cs startLine: 79 @@ -254,8 +254,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClearWithSunlight path: Common/API/IWorldChunk.cs startLine: 80 @@ -286,8 +286,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FloodWithSunlight path: Common/API/IWorldChunk.cs startLine: 81 @@ -318,8 +318,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClearLight path: Common/API/IWorldChunk.cs startLine: 82 @@ -344,8 +344,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClearAllSunlight path: Common/API/IWorldChunk.cs startLine: 83 diff --git a/api/Vintagestory.API.Common.IClassRegistryAPI.yml b/api/Vintagestory.API.Common.IClassRegistryAPI.yml index 9a37fc7d..79f34656 100644 --- a/api/Vintagestory.API.Common.IClassRegistryAPI.yml +++ b/api/Vintagestory.API.Common.IClassRegistryAPI.yml @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IClassRegistryAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IClassRegistryAPI path: Common/API/IClassRegistryAPI.cs startLine: 10 @@ -71,8 +71,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IClassRegistryAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockClassToTypeMapping path: Common/API/IClassRegistryAPI.cs startLine: 12 @@ -100,8 +100,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IClassRegistryAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ItemClassToTypeMapping path: Common/API/IClassRegistryAPI.cs startLine: 13 @@ -129,8 +129,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IClassRegistryAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlockBehaviorClassName path: Common/API/IClassRegistryAPI.cs startLine: 15 @@ -160,8 +160,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IClassRegistryAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCollectibleBehaviorClassName path: Common/API/IClassRegistryAPI.cs startLine: 16 @@ -191,8 +191,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IClassRegistryAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateBlock path: Common/API/IClassRegistryAPI.cs startLine: 23 @@ -229,8 +229,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IClassRegistryAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlockClass path: Common/API/IClassRegistryAPI.cs startLine: 30 @@ -267,8 +267,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IClassRegistryAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateBlockEntity path: Common/API/IClassRegistryAPI.cs startLine: 37 @@ -305,8 +305,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IClassRegistryAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateEntity path: Common/API/IClassRegistryAPI.cs startLine: 44 @@ -343,8 +343,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IClassRegistryAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateEntity path: Common/API/IClassRegistryAPI.cs startLine: 51 @@ -378,8 +378,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IClassRegistryAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateMountable path: Common/API/IClassRegistryAPI.cs startLine: 58 @@ -413,8 +413,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IClassRegistryAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateBlockBehavior path: Common/API/IClassRegistryAPI.cs startLine: 67 @@ -454,8 +454,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IClassRegistryAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateCollectibleBehavior path: Common/API/IClassRegistryAPI.cs startLine: 75 @@ -495,8 +495,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IClassRegistryAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlockEntityBehaviorClass path: Common/API/IClassRegistryAPI.cs startLine: 82 @@ -533,8 +533,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IClassRegistryAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateBlockEntityBehavior path: Common/API/IClassRegistryAPI.cs startLine: 90 @@ -574,8 +574,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IClassRegistryAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlockBehaviorClass path: Common/API/IClassRegistryAPI.cs startLine: 97 @@ -612,8 +612,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IClassRegistryAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCollectibleBehaviorClass path: Common/API/IClassRegistryAPI.cs startLine: 104 @@ -650,8 +650,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IClassRegistryAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateEntityBehavior path: Common/API/IClassRegistryAPI.cs startLine: 112 @@ -691,8 +691,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IClassRegistryAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetEntityBehaviorClass path: Common/API/IClassRegistryAPI.cs startLine: 114 @@ -725,8 +725,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IClassRegistryAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateInvNetworkUtil path: Common/API/IClassRegistryAPI.cs startLine: 117 @@ -758,8 +758,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IClassRegistryAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateItem path: Common/API/IClassRegistryAPI.cs startLine: 125 @@ -796,8 +796,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IClassRegistryAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetItemClass path: Common/API/IClassRegistryAPI.cs startLine: 133 @@ -834,8 +834,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IClassRegistryAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateJsonTreeAttributeFromDict path: Common/API/IClassRegistryAPI.cs startLine: 140 @@ -872,8 +872,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IClassRegistryAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlockEntity path: Common/API/IClassRegistryAPI.cs startLine: 147 @@ -910,8 +910,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IClassRegistryAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlockEntityClass path: Common/API/IClassRegistryAPI.cs startLine: 154 @@ -945,8 +945,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IClassRegistryAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetEntityClassName path: Common/API/IClassRegistryAPI.cs startLine: 161 @@ -980,8 +980,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IClassRegistryAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateCropBehavior path: Common/API/IClassRegistryAPI.cs startLine: 169 @@ -1021,8 +1021,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IClassRegistryAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterParticlePropertyProvider path: Common/API/IClassRegistryAPI.cs startLine: 172 @@ -1055,8 +1055,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IClassRegistryAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateParticlePropertyProvider path: Common/API/IClassRegistryAPI.cs startLine: 173 @@ -1086,8 +1086,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IClassRegistryAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateParticlePropertyProvider path: Common/API/IClassRegistryAPI.cs startLine: 175 diff --git a/api/Vintagestory.API.Common.IClientChunk.yml b/api/Vintagestory.API.Common.IClientChunk.yml index 38518110..796599f6 100644 --- a/api/Vintagestory.API.Common.IClientChunk.yml +++ b/api/Vintagestory.API.Common.IClientChunk.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IClientChunk path: Common/API/IWorldChunk.cs startLine: 86 @@ -84,8 +84,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadedFromServer path: Common/API/IWorldChunk.cs startLine: 91 diff --git a/api/Vintagestory.API.Common.IClientGameCalendar.yml b/api/Vintagestory.API.Common.IClientGameCalendar.yml index fdf0a054..58f0680a 100644 --- a/api/Vintagestory.API.Common.IClientGameCalendar.yml +++ b/api/Vintagestory.API.Common.IClientGameCalendar.yml @@ -25,8 +25,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IClientGameCalendar path: Common/API/IGameCalendar.cs startLine: 48 @@ -88,8 +88,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SunPositionNormalized path: Common/API/IGameCalendar.cs startLine: 53 @@ -119,8 +119,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SunPosition path: Common/API/IGameCalendar.cs startLine: 58 @@ -150,8 +150,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MoonPosition path: Common/API/IGameCalendar.cs startLine: 63 @@ -181,8 +181,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SunColor path: Common/API/IGameCalendar.cs startLine: 68 @@ -212,8 +212,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReflectColor path: Common/API/IGameCalendar.cs startLine: 70 @@ -241,8 +241,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SunsetMod path: Common/API/IGameCalendar.cs startLine: 75 @@ -272,8 +272,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DayLightStrength path: Common/API/IGameCalendar.cs startLine: 81 @@ -304,8 +304,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MoonLightStrength path: Common/API/IGameCalendar.cs startLine: 87 @@ -336,8 +336,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SunLightStrength path: Common/API/IGameCalendar.cs startLine: 89 @@ -365,8 +365,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dusk path: Common/API/IGameCalendar.cs startLine: 94 diff --git a/api/Vintagestory.API.Common.ICollectibleDisplayable.yml b/api/Vintagestory.API.Common.ICollectibleDisplayable.yml index 4aabdd5b..30c0d208 100644 --- a/api/Vintagestory.API.Common.ICollectibleDisplayable.yml +++ b/api/Vintagestory.API.Common.ICollectibleDisplayable.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ICollectibleDisplayable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ICollectibleDisplayable path: Common/Collectible/ICollectibleDisplayable.cs startLine: 7 @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ICollectibleDisplayable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMeshDataForDisplay path: Common/Collectible/ICollectibleDisplayable.cs startLine: 15 @@ -85,8 +85,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ICollectibleDisplayable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NowOnDisplay path: Common/Collectible/ICollectibleDisplayable.cs startLine: 23 diff --git a/api/Vintagestory.API.Common.ICollectibleOnDisplayInteractable.yml b/api/Vintagestory.API.Common.ICollectibleOnDisplayInteractable.yml index 6227234a..b376dbf4 100644 --- a/api/Vintagestory.API.Common.ICollectibleOnDisplayInteractable.yml +++ b/api/Vintagestory.API.Common.ICollectibleOnDisplayInteractable.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ICollectibleDisplayable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ICollectibleOnDisplayInteractable path: Common/Collectible/ICollectibleDisplayable.cs startLine: 29 @@ -46,8 +46,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ICollectibleDisplayable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnInteractStart path: Common/Collectible/ICollectibleDisplayable.cs startLine: 31 @@ -79,8 +79,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ICollectibleDisplayable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnInteractStep path: Common/Collectible/ICollectibleDisplayable.cs startLine: 33 @@ -117,8 +117,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ICollectibleDisplayable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnInteractStop path: Common/Collectible/ICollectibleDisplayable.cs startLine: 35 @@ -153,8 +153,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ICollectibleDisplayable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnInteractCancel path: Common/Collectible/ICollectibleDisplayable.cs startLine: 37 diff --git a/api/Vintagestory.API.Common.ICombustible.yml b/api/Vintagestory.API.Common.ICombustible.yml index 642707c3..b0e09317 100644 --- a/api/Vintagestory.API.Common.ICombustible.yml +++ b/api/Vintagestory.API.Common.ICombustible.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CombustibleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ICombustible path: Common/Collectible/CombustibleProperties.cs startLine: 13 @@ -41,8 +41,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/CombustibleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBurnDuration path: Common/Collectible/CombustibleProperties.cs startLine: 15 diff --git a/api/Vintagestory.API.Common.ICommandArgumentParser.yml b/api/Vintagestory.API.Common.ICommandArgumentParser.yml index 99eb6708..b6ffbe97 100644 --- a/api/Vintagestory.API.Common.ICommandArgumentParser.yml +++ b/api/Vintagestory.API.Common.ICommandArgumentParser.yml @@ -27,8 +27,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ICommandArgumentParser path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 210 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ArgCount path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 214 @@ -83,8 +83,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LastErrorMessage path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 215 @@ -112,8 +112,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ArgumentName path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 216 @@ -141,8 +141,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsMandatoryArg path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 217 @@ -170,8 +170,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsMissing path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 218 @@ -199,8 +199,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreProcess path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 220 @@ -228,8 +228,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryProcess path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 228 @@ -269,8 +269,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValidRange path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 229 @@ -300,8 +300,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 230 @@ -328,8 +328,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSyntax path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 231 @@ -356,8 +356,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSyntaxExplanation path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 232 @@ -390,8 +390,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 238 diff --git a/api/Vintagestory.API.Common.ICoreAPI.yml b/api/Vintagestory.API.Common.ICoreAPI.yml index d1be913f..5c10ef75 100644 --- a/api/Vintagestory.API.Common.ICoreAPI.yml +++ b/api/Vintagestory.API.Common.ICoreAPI.yml @@ -26,8 +26,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ICoreAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ICoreAPI path: Common/API/ICoreAPI.cs startLine: 163 @@ -75,8 +75,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ICoreAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Logger path: Common/API/ICoreAPI.cs startLine: 168 @@ -106,8 +106,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ICoreAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CmdlArguments path: Common/API/ICoreAPI.cs startLine: 173 @@ -137,8 +137,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ICoreAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChatCommands path: Common/API/ICoreAPI.cs startLine: 175 @@ -166,8 +166,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ICoreAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Side path: Common/API/ICoreAPI.cs startLine: 180 @@ -197,8 +197,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ICoreAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Event path: Common/API/ICoreAPI.cs startLine: 185 @@ -228,8 +228,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ICoreAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: World path: Common/API/ICoreAPI.cs startLine: 190 @@ -259,8 +259,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ICoreAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClassRegistry path: Common/API/ICoreAPI.cs startLine: 195 @@ -290,8 +290,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ICoreAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Network path: Common/API/ICoreAPI.cs startLine: 200 @@ -321,8 +321,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ICoreAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Assets path: Common/API/ICoreAPI.cs startLine: 206 @@ -352,8 +352,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ICoreAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ModLoader path: Common/API/ICoreAPI.cs startLine: 211 @@ -383,8 +383,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ICoreAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterEntityClass path: Common/API/ICoreAPI.cs startLine: 219 diff --git a/api/Vintagestory.API.Common.ICoreAPICommon.yml b/api/Vintagestory.API.Common.ICoreAPICommon.yml index 82a99fbe..4a0846f4 100644 --- a/api/Vintagestory.API.Common.ICoreAPICommon.yml +++ b/api/Vintagestory.API.Common.ICoreAPICommon.yml @@ -34,8 +34,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ICoreAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ICoreAPICommon path: Common/API/ICoreAPI.cs startLine: 19 @@ -61,8 +61,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ICoreAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterRecipeRegistry path: Common/API/ICoreAPI.cs startLine: 30 @@ -102,8 +102,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ICoreAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterColorMap path: Common/API/ICoreAPI.cs startLine: 36 @@ -133,8 +133,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ICoreAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterEntity path: Common/API/ICoreAPI.cs startLine: 43 @@ -171,8 +171,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ICoreAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterEntityBehaviorClass path: Common/API/ICoreAPI.cs startLine: 50 @@ -209,8 +209,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ICoreAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterBlockClass path: Common/API/ICoreAPI.cs startLine: 57 @@ -247,8 +247,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ICoreAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterCropBehavior path: Common/API/ICoreAPI.cs startLine: 64 @@ -285,8 +285,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ICoreAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterBlockEntityClass path: Common/API/ICoreAPI.cs startLine: 72 @@ -323,8 +323,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ICoreAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterItemClass path: Common/API/ICoreAPI.cs startLine: 79 @@ -361,8 +361,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ICoreAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterCollectibleBehaviorClass path: Common/API/ICoreAPI.cs startLine: 86 @@ -399,8 +399,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ICoreAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterBlockBehaviorClass path: Common/API/ICoreAPI.cs startLine: 94 @@ -437,8 +437,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ICoreAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterBlockEntityBehaviorClass path: Common/API/ICoreAPI.cs startLine: 101 @@ -475,8 +475,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ICoreAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterMountable path: Common/API/ICoreAPI.cs startLine: 110 @@ -516,8 +516,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ICoreAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ObjectCache path: Common/API/ICoreAPI.cs startLine: 119 @@ -547,8 +547,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ICoreAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DataBasePath path: Common/API/ICoreAPI.cs startLine: 125 @@ -579,8 +579,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ICoreAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetOrCreateDataPath path: Common/API/ICoreAPI.cs startLine: 132 @@ -617,8 +617,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ICoreAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StoreModConfig path: Common/API/ICoreAPI.cs startLine: 142 @@ -661,8 +661,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ICoreAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StoreModConfig path: Common/API/ICoreAPI.cs startLine: 144 @@ -695,8 +695,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ICoreAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadModConfig path: Common/API/ICoreAPI.cs startLine: 155 @@ -741,8 +741,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ICoreAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadModConfig path: Common/API/ICoreAPI.cs startLine: 157 diff --git a/api/Vintagestory.API.Common.IDrawYAdjustable.yml b/api/Vintagestory.API.Common.IDrawYAdjustable.yml index 966130f1..b86431bf 100644 --- a/api/Vintagestory.API.Common.IDrawYAdjustable.yml +++ b/api/Vintagestory.API.Common.IDrawYAdjustable.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/IDrawYAdjustable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IDrawYAdjustable path: Common/Collectible/Block/IDrawYAdjustable.cs startLine: 5 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/IDrawYAdjustable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AdjustYPosition path: Common/Collectible/Block/IDrawYAdjustable.cs startLine: 7 diff --git a/api/Vintagestory.API.Common.IEntityPartitioning.yml b/api/Vintagestory.API.Common.IEntityPartitioning.yml index a41437ff..566b9c38 100644 --- a/api/Vintagestory.API.Common.IEntityPartitioning.yml +++ b/api/Vintagestory.API.Common.IEntityPartitioning.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/IEntityPartitioning.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IEntityPartitioning path: Common/Entity/IEntityPartitioning.cs startLine: 2 @@ -41,8 +41,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/IEntityPartitioning.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RePartitionPlayer path: Common/Entity/IEntityPartitioning.cs startLine: 4 diff --git a/api/Vintagestory.API.Common.IEventAPI.yml b/api/Vintagestory.API.Common.IEventAPI.yml index ca6ca6a8..339998f2 100644 --- a/api/Vintagestory.API.Common.IEventAPI.yml +++ b/api/Vintagestory.API.Common.IEventAPI.yml @@ -39,8 +39,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IEventAPI path: Common/API/IEventAPI.cs startLine: 78 @@ -66,8 +66,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnTestBlockAccess path: Common/API/IEventAPI.cs startLine: 83 @@ -95,8 +95,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnEntitySpawn path: Common/API/IEventAPI.cs startLine: 88 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnEntityLoaded path: Common/API/IEventAPI.cs startLine: 93 @@ -153,8 +153,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnEntityDeath path: Common/API/IEventAPI.cs startLine: 95 @@ -180,8 +180,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnEntityDespawn path: Common/API/IEventAPI.cs startLine: 100 @@ -209,8 +209,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChunkDirty path: Common/API/IEventAPI.cs startLine: 105 @@ -238,8 +238,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MapRegionLoaded path: Common/API/IEventAPI.cs startLine: 110 @@ -267,8 +267,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MapRegionUnloaded path: Common/API/IEventAPI.cs startLine: 115 @@ -296,8 +296,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnGetClimate path: Common/API/IEventAPI.cs startLine: 121 @@ -325,8 +325,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnGetWindSpeed path: Common/API/IEventAPI.cs startLine: 126 @@ -354,8 +354,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MatchesGridRecipe path: Common/API/IEventAPI.cs startLine: 131 @@ -383,8 +383,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PushEvent path: Common/API/IEventAPI.cs startLine: 138 @@ -421,8 +421,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterEventBusListener path: Common/API/IEventAPI.cs startLine: 147 @@ -462,8 +462,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterGameTickListener path: Common/API/IEventAPI.cs startLine: 157 @@ -506,8 +506,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterGameTickListener path: Common/API/IEventAPI.cs startLine: 169 @@ -556,8 +556,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterGameTickListener path: Common/API/IEventAPI.cs startLine: 180 @@ -603,8 +603,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterCallback path: Common/API/IEventAPI.cs startLine: 191 @@ -644,8 +644,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterCallback path: Common/API/IEventAPI.cs startLine: 200 @@ -690,8 +690,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterCallback path: Common/API/IEventAPI.cs startLine: 209 @@ -734,8 +734,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UnregisterCallback path: Common/API/IEventAPI.cs startLine: 216 @@ -769,8 +769,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UnregisterGameTickListener path: Common/API/IEventAPI.cs startLine: 223 @@ -804,8 +804,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnqueueMainThreadTask path: Common/API/IEventAPI.cs startLine: 231 @@ -842,8 +842,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TriggerEntityDeath path: Common/API/IEventAPI.cs startLine: 233 @@ -873,8 +873,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TriggerMatchesRecipe path: Common/API/IEventAPI.cs startLine: 234 diff --git a/api/Vintagestory.API.Common.IFarmlandBlockEntity.yml b/api/Vintagestory.API.Common.IFarmlandBlockEntity.yml index d9b39d73..90cbec4f 100644 --- a/api/Vintagestory.API.Common.IFarmlandBlockEntity.yml +++ b/api/Vintagestory.API.Common.IFarmlandBlockEntity.yml @@ -24,8 +24,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Crop/Farmland.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IFarmlandBlockEntity path: Common/Collectible/Block/Crop/Farmland.cs startLine: 5 @@ -49,8 +49,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Crop/Farmland.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TotalHoursForNextStage path: Common/Collectible/Block/Crop/Farmland.cs startLine: 10 @@ -80,8 +80,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Crop/Farmland.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TotalHoursFertilityCheck path: Common/Collectible/Block/Crop/Farmland.cs startLine: 15 @@ -111,8 +111,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Crop/Farmland.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Nutrients path: Common/Collectible/Block/Crop/Farmland.cs startLine: 21 @@ -145,8 +145,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Crop/Farmland.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MoistureLevel path: Common/Collectible/Block/Crop/Farmland.cs startLine: 26 @@ -176,8 +176,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Crop/Farmland.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsVisiblyMoist path: Common/Collectible/Block/Crop/Farmland.cs startLine: 28 @@ -205,8 +205,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Crop/Farmland.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OriginalFertility path: Common/Collectible/Block/Crop/Farmland.cs startLine: 33 @@ -236,8 +236,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Crop/Farmland.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pos path: Common/Collectible/Block/Crop/Farmland.cs startLine: 38 @@ -267,8 +267,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Crop/Farmland.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UpPos path: Common/Collectible/Block/Crop/Farmland.cs startLine: 43 @@ -298,8 +298,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/Crop/Farmland.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CropAttributes path: Common/Collectible/Block/Crop/Farmland.cs startLine: 45 diff --git a/api/Vintagestory.API.Common.IGameCalendar.yml b/api/Vintagestory.API.Common.IGameCalendar.yml index fee68c14..276b2897 100644 --- a/api/Vintagestory.API.Common.IGameCalendar.yml +++ b/api/Vintagestory.API.Common.IGameCalendar.yml @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IGameCalendar path: Common/API/IGameCalendar.cs startLine: 124 @@ -79,8 +79,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnGetHemisphere path: Common/API/IGameCalendar.cs startLine: 129 @@ -110,8 +110,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnGetSolarSphericalCoords path: Common/API/IGameCalendar.cs startLine: 134 @@ -141,8 +141,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnGetLatitude path: Common/API/IGameCalendar.cs startLine: 140 @@ -175,8 +175,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDayLightStrength path: Common/API/IGameCalendar.cs startLine: 150 @@ -216,8 +216,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDayLightStrength path: Common/API/IGameCalendar.cs startLine: 157 @@ -251,8 +251,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PrettyDate path: Common/API/IGameCalendar.cs startLine: 164 @@ -282,8 +282,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SpeedOfTime path: Common/API/IGameCalendar.cs startLine: 170 @@ -316,8 +316,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetTimeSpeedModifier path: Common/API/IGameCalendar.cs startLine: 175 @@ -352,8 +352,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveTimeSpeedModifier path: Common/API/IGameCalendar.cs startLine: 181 @@ -387,8 +387,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ElapsedSeconds path: Common/API/IGameCalendar.cs startLine: 186 @@ -418,8 +418,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ElapsedHours path: Common/API/IGameCalendar.cs startLine: 191 @@ -449,8 +449,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ElapsedDays path: Common/API/IGameCalendar.cs startLine: 196 @@ -480,8 +480,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CalendarSpeedMul path: Common/API/IGameCalendar.cs startLine: 202 @@ -511,8 +511,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HoursPerDay path: Common/API/IGameCalendar.cs startLine: 207 @@ -542,8 +542,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DaysPerYear path: Common/API/IGameCalendar.cs startLine: 212 @@ -573,8 +573,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DaysPerMonth path: Common/API/IGameCalendar.cs startLine: 217 @@ -604,8 +604,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Month path: Common/API/IGameCalendar.cs startLine: 220 @@ -633,8 +633,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MonthName path: Common/API/IGameCalendar.cs startLine: 221 @@ -662,8 +662,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FullHourOfDay path: Common/API/IGameCalendar.cs startLine: 226 @@ -693,8 +693,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HourOfDay path: Common/API/IGameCalendar.cs startLine: 231 @@ -724,8 +724,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TotalHours path: Common/API/IGameCalendar.cs startLine: 236 @@ -755,8 +755,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TotalDays path: Common/API/IGameCalendar.cs startLine: 241 @@ -786,8 +786,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DayOfYear path: Common/API/IGameCalendar.cs startLine: 246 @@ -817,8 +817,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DayOfYearf path: Common/API/IGameCalendar.cs startLine: 251 @@ -848,8 +848,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Year path: Common/API/IGameCalendar.cs startLine: 257 @@ -879,8 +879,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSeason path: Common/API/IGameCalendar.cs startLine: 264 @@ -914,8 +914,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSeasonRel path: Common/API/IGameCalendar.cs startLine: 271 @@ -949,8 +949,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHemisphere path: Common/API/IGameCalendar.cs startLine: 278 @@ -984,8 +984,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: YearRel path: Common/API/IGameCalendar.cs startLine: 283 @@ -1015,8 +1015,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Common/API/IGameCalendar.cs startLine: 289 @@ -1050,8 +1050,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MoonPhase path: Common/API/IGameCalendar.cs startLine: 294 @@ -1081,8 +1081,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MoonPhaseExact path: Common/API/IGameCalendar.cs startLine: 298 @@ -1112,8 +1112,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MoonPhaseBrightness path: Common/API/IGameCalendar.cs startLine: 302 @@ -1143,8 +1143,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MoonSize path: Common/API/IGameCalendar.cs startLine: 306 @@ -1174,8 +1174,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SeasonOverride path: Common/API/IGameCalendar.cs startLine: 307 @@ -1203,8 +1203,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetSeasonOverride path: Common/API/IGameCalendar.cs startLine: 313 @@ -1238,8 +1238,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Timelapse path: Common/API/IGameCalendar.cs startLine: 318 diff --git a/api/Vintagestory.API.Common.IGeometryTester.yml b/api/Vintagestory.API.Common.IGeometryTester.yml index 6a9803b4..0e63b0b7 100644 --- a/api/Vintagestory.API.Common.IGeometryTester.yml +++ b/api/Vintagestory.API.Common.IGeometryTester.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/IGeometryTester.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IGeometryTester path: Common/Collectible/Block/IGeometryTester.cs startLine: 8 @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/IGeometryTester.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCurrentBlockEntityOnSide path: Common/Collectible/Block/IGeometryTester.cs startLine: 10 @@ -75,8 +75,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/IGeometryTester.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCurrentBlockEntityOnSide path: Common/Collectible/Block/IGeometryTester.cs startLine: 11 diff --git a/api/Vintagestory.API.Common.IInventory.yml b/api/Vintagestory.API.Common.IInventory.yml index 0b54f70a..aad984c9 100644 --- a/api/Vintagestory.API.Common.IInventory.yml +++ b/api/Vintagestory.API.Common.IInventory.yml @@ -35,8 +35,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/IInventory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IInventory path: Common/Inventory/IInventory.cs startLine: 9 @@ -69,8 +69,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/IInventory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Empty path: Common/Inventory/IInventory.cs startLine: 14 @@ -100,8 +100,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/IInventory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveOnClose path: Common/Inventory/IInventory.cs startLine: 19 @@ -131,8 +131,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/IInventory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TakeLocked path: Common/Inventory/IInventory.cs startLine: 24 @@ -162,8 +162,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/IInventory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PutLocked path: Common/Inventory/IInventory.cs startLine: 29 @@ -193,8 +193,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/IInventory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LastChanged path: Common/Inventory/IInventory.cs startLine: 34 @@ -224,8 +224,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/IInventory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Common/Inventory/IInventory.cs startLine: 41 @@ -265,8 +265,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/IInventory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClassName path: Common/Inventory/IInventory.cs startLine: 47 @@ -296,8 +296,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/IInventory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InventoryID path: Common/Inventory/IInventory.cs startLine: 52 @@ -327,8 +327,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/IInventory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DirtySlots path: Common/Inventory/IInventory.cs startLine: 57 @@ -358,8 +358,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/IInventory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Open path: Common/Inventory/IInventory.cs startLine: 63 @@ -392,8 +392,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/IInventory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Close path: Common/Inventory/IInventory.cs startLine: 68 @@ -426,8 +426,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/IInventory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HasOpened path: Common/Inventory/IInventory.cs startLine: 74 @@ -460,8 +460,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/IInventory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBestSuitedSlot path: Common/Inventory/IInventory.cs startLine: 88 @@ -512,8 +512,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/IInventory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBestSuitedSlot path: Common/Inventory/IInventory.cs startLine: 89 @@ -560,8 +560,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/IInventory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ActivateSlot path: Common/Inventory/IInventory.cs startLine: 99 @@ -604,8 +604,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/IInventory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryFlipItems path: Common/Inventory/IInventory.cs startLine: 107 @@ -645,8 +645,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/IInventory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSlotId path: Common/Inventory/IInventory.cs startLine: 114 @@ -680,8 +680,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/IInventory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MarkSlotDirty path: Common/Inventory/IInventory.cs startLine: 121 @@ -718,8 +718,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/IInventory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SlotModified path: Common/Inventory/IInventory.cs startLine: 126 @@ -747,8 +747,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/IInventory.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SlotNotified path: Common/Inventory/IInventory.cs startLine: 131 diff --git a/api/Vintagestory.API.Common.IInventoryNetworkUtil.yml b/api/Vintagestory.API.Common.IInventoryNetworkUtil.yml index cccd924b..0c415dea 100644 --- a/api/Vintagestory.API.Common.IInventoryNetworkUtil.yml +++ b/api/Vintagestory.API.Common.IInventoryNetworkUtil.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/IInventoryNetworkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IInventoryNetworkUtil path: Common/Inventory/IInventoryNetworkUtil.cs startLine: 2 @@ -47,8 +47,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/IInventoryNetworkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Api path: Common/Inventory/IInventoryNetworkUtil.cs startLine: 7 @@ -78,8 +78,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/IInventoryNetworkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetActivateSlotPacket path: Common/Inventory/IInventoryNetworkUtil.cs startLine: 14 @@ -118,8 +118,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/IInventoryNetworkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetFlipSlotsPacket path: Common/Inventory/IInventoryNetworkUtil.cs startLine: 22 @@ -161,8 +161,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/IInventoryNetworkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HandleClientPacket path: Common/Inventory/IInventoryNetworkUtil.cs startLine: 30 @@ -202,8 +202,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/IInventoryNetworkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DidOpen path: Common/Inventory/IInventoryNetworkUtil.cs startLine: 37 @@ -237,8 +237,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/IInventoryNetworkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DidClose path: Common/Inventory/IInventoryNetworkUtil.cs startLine: 44 @@ -272,8 +272,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/IInventoryNetworkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PauseInventoryUpdates path: Common/Inventory/IInventoryNetworkUtil.cs startLine: 46 diff --git a/api/Vintagestory.API.Common.IItemStack.yml b/api/Vintagestory.API.Common.IItemStack.yml index e7059448..c0b77eb7 100644 --- a/api/Vintagestory.API.Common.IItemStack.yml +++ b/api/Vintagestory.API.Common.IItemStack.yml @@ -29,8 +29,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/IItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IItemStack path: Common/Collectible/IItemStack.cs startLine: 8 @@ -56,8 +56,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/IItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Collectible path: Common/Collectible/IItemStack.cs startLine: 13 @@ -87,8 +87,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/IItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Class path: Common/Collectible/IItemStack.cs startLine: 18 @@ -118,8 +118,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/IItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Item path: Common/Collectible/IItemStack.cs startLine: 23 @@ -149,8 +149,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/IItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Block path: Common/Collectible/IItemStack.cs startLine: 28 @@ -180,8 +180,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/IItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StackSize path: Common/Collectible/IItemStack.cs startLine: 33 @@ -211,8 +211,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/IItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Id path: Common/Collectible/IItemStack.cs startLine: 38 @@ -242,8 +242,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/IItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Attributes path: Common/Collectible/IItemStack.cs startLine: 43 @@ -273,8 +273,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/IItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Common/Collectible/IItemStack.cs startLine: 52 @@ -317,8 +317,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/IItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Common/Collectible/IItemStack.cs startLine: 58 @@ -349,8 +349,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/IItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Collectible/IItemStack.cs startLine: 64 @@ -381,8 +381,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/IItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MatchesSearchText path: Common/Collectible/IItemStack.cs startLine: 72 @@ -422,8 +422,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/IItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetName path: Common/Collectible/IItemStack.cs startLine: 78 @@ -453,8 +453,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/IItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDescription path: Common/Collectible/IItemStack.cs startLine: 87 @@ -497,8 +497,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/IItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Collectible/IItemStack.cs startLine: 93 diff --git a/api/Vintagestory.API.Common.ILandClaimAPI.yml b/api/Vintagestory.API.Common.ILandClaimAPI.yml index 51e1b3c2..87d1ed08 100644 --- a/api/Vintagestory.API.Common.ILandClaimAPI.yml +++ b/api/Vintagestory.API.Common.ILandClaimAPI.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILandClaimAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ILandClaimAPI path: Common/API/ILandClaimAPI.cs startLine: 5 @@ -46,8 +46,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILandClaimAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: All path: Common/API/ILandClaimAPI.cs startLine: 10 @@ -77,8 +77,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILandClaimAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TestAccess path: Common/API/ILandClaimAPI.cs startLine: 19 @@ -118,8 +118,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILandClaimAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryAccess path: Common/API/ILandClaimAPI.cs startLine: 29 @@ -159,8 +159,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILandClaimAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Get path: Common/API/ILandClaimAPI.cs startLine: 36 @@ -194,8 +194,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILandClaimAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Common/API/ILandClaimAPI.cs startLine: 43 @@ -226,8 +226,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILandClaimAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Remove path: Common/API/ILandClaimAPI.cs startLine: 51 diff --git a/api/Vintagestory.API.Common.ILogger.yml b/api/Vintagestory.API.Common.ILogger.yml index 4d7223f3..49466fb5 100644 --- a/api/Vintagestory.API.Common.ILogger.yml +++ b/api/Vintagestory.API.Common.ILogger.yml @@ -45,8 +45,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ILogger path: Common/API/ILogger.cs startLine: 8 @@ -72,8 +72,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TraceLog path: Common/API/ILogger.cs startLine: 13 @@ -103,8 +103,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntryAdded path: Common/API/ILogger.cs startLine: 18 @@ -132,8 +132,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClearWatchers path: Common/API/ILogger.cs startLine: 24 @@ -163,8 +163,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Log path: Common/API/ILogger.cs startLine: 29 @@ -201,8 +201,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Log path: Common/API/ILogger.cs startLine: 33 @@ -237,8 +237,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Chat path: Common/API/ILogger.cs startLine: 38 @@ -273,8 +273,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Chat path: Common/API/ILogger.cs startLine: 43 @@ -307,8 +307,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Event path: Common/API/ILogger.cs startLine: 48 @@ -343,8 +343,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Event path: Common/API/ILogger.cs startLine: 52 @@ -377,8 +377,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StoryEvent path: Common/API/ILogger.cs startLine: 57 @@ -413,8 +413,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StoryEvent path: Common/API/ILogger.cs startLine: 61 @@ -447,8 +447,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Build path: Common/API/ILogger.cs startLine: 66 @@ -483,8 +483,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Build path: Common/API/ILogger.cs startLine: 70 @@ -517,8 +517,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VerboseDebug path: Common/API/ILogger.cs startLine: 75 @@ -553,8 +553,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VerboseDebug path: Common/API/ILogger.cs startLine: 79 @@ -587,8 +587,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Debug path: Common/API/ILogger.cs startLine: 84 @@ -623,8 +623,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Debug path: Common/API/ILogger.cs startLine: 88 @@ -657,8 +657,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Notification path: Common/API/ILogger.cs startLine: 93 @@ -693,8 +693,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Notification path: Common/API/ILogger.cs startLine: 97 @@ -727,8 +727,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Warning path: Common/API/ILogger.cs startLine: 102 @@ -763,8 +763,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Warning path: Common/API/ILogger.cs startLine: 106 @@ -797,8 +797,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Warning path: Common/API/ILogger.cs startLine: 110 @@ -828,8 +828,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Error path: Common/API/ILogger.cs startLine: 115 @@ -864,8 +864,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Error path: Common/API/ILogger.cs startLine: 119 @@ -898,8 +898,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Error path: Common/API/ILogger.cs startLine: 123 @@ -929,8 +929,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Fatal path: Common/API/ILogger.cs startLine: 128 @@ -965,8 +965,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Fatal path: Common/API/ILogger.cs startLine: 132 @@ -999,8 +999,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Fatal path: Common/API/ILogger.cs startLine: 136 @@ -1030,8 +1030,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Audit path: Common/API/ILogger.cs startLine: 141 @@ -1066,8 +1066,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Audit path: Common/API/ILogger.cs startLine: 145 diff --git a/api/Vintagestory.API.Common.IMapChunk.yml b/api/Vintagestory.API.Common.IMapChunk.yml index c3220601..9bdb6b02 100644 --- a/api/Vintagestory.API.Common.IMapChunk.yml +++ b/api/Vintagestory.API.Common.IMapChunk.yml @@ -33,8 +33,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IMapChunk path: Common/API/IMapChunk.cs startLine: 15 @@ -60,8 +60,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SnowAccum path: Common/API/IMapChunk.cs startLine: 17 @@ -89,8 +89,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MapRegion path: Common/API/IMapChunk.cs startLine: 22 @@ -120,8 +120,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentPass path: Common/API/IMapChunk.cs startLine: 27 @@ -151,8 +151,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetData path: Common/API/IMapChunk.cs startLine: 36 @@ -204,8 +204,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetData path: Common/API/IMapChunk.cs startLine: 46 @@ -257,8 +257,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetModdata path: Common/API/IMapChunk.cs startLine: 56 @@ -298,8 +298,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveModdata path: Common/API/IMapChunk.cs startLine: 63 @@ -336,8 +336,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetModdata path: Common/API/IMapChunk.cs startLine: 71 @@ -377,8 +377,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetModdata path: Common/API/IMapChunk.cs startLine: 81 @@ -421,8 +421,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetModdata path: Common/API/IMapChunk.cs startLine: 90 @@ -468,8 +468,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CaveHeightDistort path: Common/API/IMapChunk.cs startLine: 93 @@ -497,8 +497,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RainHeightMap path: Common/API/IMapChunk.cs startLine: 98 @@ -528,8 +528,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WorldGenTerrainHeightMap path: Common/API/IMapChunk.cs startLine: 103 @@ -559,8 +559,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TopRockIdMap path: Common/API/IMapChunk.cs startLine: 108 @@ -590,8 +590,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SedimentaryThicknessMap path: Common/API/IMapChunk.cs startLine: 110 @@ -619,8 +619,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: YMax path: Common/API/IMapChunk.cs startLine: 116 @@ -650,8 +650,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MarkFresh path: Common/API/IMapChunk.cs startLine: 121 @@ -678,8 +678,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MarkDirty path: Common/API/IMapChunk.cs startLine: 126 diff --git a/api/Vintagestory.API.Common.IMapRegion.yml b/api/Vintagestory.API.Common.IMapRegion.yml index 102b734d..33d7e060 100644 --- a/api/Vintagestory.API.Common.IMapRegion.yml +++ b/api/Vintagestory.API.Common.IMapRegion.yml @@ -39,8 +39,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapRegion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IMapRegion path: Common/API/IMapRegion.cs startLine: 40 @@ -66,8 +66,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapRegion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockPatchMaps path: Common/API/IMapRegion.cs startLine: 45 @@ -97,8 +97,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapRegion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FlowerMap path: Common/API/IMapRegion.cs startLine: 50 @@ -128,8 +128,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapRegion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShrubMap path: Common/API/IMapRegion.cs startLine: 55 @@ -159,8 +159,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapRegion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ForestMap path: Common/API/IMapRegion.cs startLine: 60 @@ -190,8 +190,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapRegion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeachMap path: Common/API/IMapRegion.cs startLine: 65 @@ -221,8 +221,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapRegion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OceanMap path: Common/API/IMapRegion.cs startLine: 67 @@ -250,8 +250,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapRegion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UpheavelMap path: Common/API/IMapRegion.cs startLine: 69 @@ -279,8 +279,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapRegion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LandformMap path: Common/API/IMapRegion.cs startLine: 74 @@ -310,8 +310,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapRegion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClimateMap path: Common/API/IMapRegion.cs startLine: 82 @@ -348,8 +348,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapRegion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GeologicProvinceMap path: Common/API/IMapRegion.cs startLine: 87 @@ -379,8 +379,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapRegion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RockStrata path: Common/API/IMapRegion.cs startLine: 93 @@ -410,8 +410,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapRegion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ModData path: Common/API/IMapRegion.cs startLine: 99 @@ -453,8 +453,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapRegion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ModMaps path: Common/API/IMapRegion.cs startLine: 105 @@ -484,8 +484,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapRegion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OreMaps path: Common/API/IMapRegion.cs startLine: 110 @@ -515,8 +515,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapRegion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OreMapVerticalDistortTop path: Common/API/IMapRegion.cs startLine: 112 @@ -544,8 +544,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapRegion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OreMapVerticalDistortBottom path: Common/API/IMapRegion.cs startLine: 113 @@ -573,8 +573,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapRegion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GeneratedStructures path: Common/API/IMapRegion.cs startLine: 119 @@ -604,8 +604,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapRegion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DirtyForSaving path: Common/API/IMapRegion.cs startLine: 122 @@ -633,8 +633,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapRegion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetModdata path: Common/API/IMapRegion.cs startLine: 131 @@ -674,8 +674,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapRegion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveModdata path: Common/API/IMapRegion.cs startLine: 138 @@ -712,8 +712,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapRegion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetModdata path: Common/API/IMapRegion.cs startLine: 146 @@ -753,8 +753,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapRegion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetModdata path: Common/API/IMapRegion.cs startLine: 156 @@ -797,8 +797,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapRegion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetModdata path: Common/API/IMapRegion.cs startLine: 164 @@ -841,8 +841,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapRegion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddGeneratedStructure path: Common/API/IMapRegion.cs startLine: 168 diff --git a/api/Vintagestory.API.Common.IMaterialExchangeable.yml b/api/Vintagestory.API.Common.IMaterialExchangeable.yml index eb2e7c5e..02754363 100644 --- a/api/Vintagestory.API.Common.IMaterialExchangeable.yml +++ b/api/Vintagestory.API.Common.IMaterialExchangeable.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/IRotatable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IMaterialExchangeable path: Common/Collectible/Block/IRotatable.cs startLine: 26 @@ -41,8 +41,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/IRotatable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExchangeWith path: Common/Collectible/Block/IRotatable.cs startLine: 28 diff --git a/api/Vintagestory.API.Common.IMiniDimension.yml b/api/Vintagestory.API.Common.IMiniDimension.yml index 24f90f28..259c7263 100644 --- a/api/Vintagestory.API.Common.IMiniDimension.yml +++ b/api/Vintagestory.API.Common.IMiniDimension.yml @@ -29,8 +29,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMiniDimension.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IMiniDimension path: Common/API/IMiniDimension.cs startLine: 8 @@ -137,8 +137,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMiniDimension.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: subDimensionId path: Common/API/IMiniDimension.cs startLine: 10 @@ -166,8 +166,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMiniDimension.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentPos path: Common/API/IMiniDimension.cs startLine: 11 @@ -195,8 +195,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMiniDimension.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dirty path: Common/API/IMiniDimension.cs startLine: 12 @@ -224,8 +224,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMiniDimension.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TrackSelection path: Common/API/IMiniDimension.cs startLine: 13 @@ -253,8 +253,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMiniDimension.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: selectionTrackingOriginalPos path: Common/API/IMiniDimension.cs startLine: 14 @@ -282,8 +282,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMiniDimension.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CollectChunksForSending path: Common/API/IMiniDimension.cs startLine: 19 @@ -316,8 +316,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMiniDimension.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClearChunks path: Common/API/IMiniDimension.cs startLine: 24 @@ -344,8 +344,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMiniDimension.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UnloadUnusedServerChunks path: Common/API/IMiniDimension.cs startLine: 28 @@ -372,8 +372,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMiniDimension.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRenderOffset path: Common/API/IMiniDimension.cs startLine: 33 @@ -408,8 +408,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMiniDimension.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRenderTransformMatrix path: Common/API/IMiniDimension.cs startLine: 34 @@ -444,8 +444,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMiniDimension.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReceiveClientChunk path: Common/API/IMiniDimension.cs startLine: 35 @@ -480,8 +480,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMiniDimension.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetSubDimensionId path: Common/API/IMiniDimension.cs startLine: 36 @@ -512,8 +512,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMiniDimension.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetSelectionTrackingSubId_Server path: Common/API/IMiniDimension.cs startLine: 37 @@ -544,8 +544,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMiniDimension.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AdjustPosForSubDimension path: Common/API/IMiniDimension.cs startLine: 38 diff --git a/api/Vintagestory.API.Common.IModLoader.yml b/api/Vintagestory.API.Common.IModLoader.yml index 30923373..08dab0b2 100644 --- a/api/Vintagestory.API.Common.IModLoader.yml +++ b/api/Vintagestory.API.Common.IModLoader.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IModLoader.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IModLoader path: Common/API/IModLoader.cs startLine: 4 @@ -47,8 +47,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IModLoader.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mods path: Common/API/IModLoader.cs startLine: 9 @@ -78,8 +78,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IModLoader.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Systems path: Common/API/IModLoader.cs startLine: 14 @@ -109,8 +109,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IModLoader.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMod path: Common/API/IModLoader.cs startLine: 20 @@ -148,8 +148,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IModLoader.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsModEnabled path: Common/API/IModLoader.cs startLine: 25 @@ -184,8 +184,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IModLoader.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetModSystem path: Common/API/IModLoader.cs startLine: 32 @@ -225,8 +225,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IModLoader.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetModSystem path: Common/API/IModLoader.cs startLine: 38 @@ -266,8 +266,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IModLoader.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsModSystemEnabled path: Common/API/IModLoader.cs startLine: 43 diff --git a/api/Vintagestory.API.Common.IMountable.yml b/api/Vintagestory.API.Common.IMountable.yml index f7f54ba4..4a377d91 100644 --- a/api/Vintagestory.API.Common.IMountable.yml +++ b/api/Vintagestory.API.Common.IMountable.yml @@ -26,8 +26,8 @@ items: source: remote: path: VintagestoryApi/Common/IMountable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IMountable path: Common/IMountable.cs startLine: 39 @@ -51,8 +51,8 @@ items: source: remote: path: VintagestoryApi/Common/IMountable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanControl path: Common/IMountable.cs startLine: 44 @@ -82,8 +82,8 @@ items: source: remote: path: VintagestoryApi/Common/IMountable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MountedBy path: Common/IMountable.cs startLine: 46 @@ -111,8 +111,8 @@ items: source: remote: path: VintagestoryApi/Common/IMountable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MountSupplier path: Common/IMountable.cs startLine: 51 @@ -142,8 +142,8 @@ items: source: remote: path: VintagestoryApi/Common/IMountable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MountPosition path: Common/IMountable.cs startLine: 53 @@ -171,8 +171,8 @@ items: source: remote: path: VintagestoryApi/Common/IMountable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AngleMode path: Common/IMountable.cs startLine: 55 @@ -200,8 +200,8 @@ items: source: remote: path: VintagestoryApi/Common/IMountable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SuggestedAnimation path: Common/IMountable.cs startLine: 57 @@ -229,8 +229,8 @@ items: source: remote: path: VintagestoryApi/Common/IMountable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LocalEyePos path: Common/IMountable.cs startLine: 59 @@ -258,8 +258,8 @@ items: source: remote: path: VintagestoryApi/Common/IMountable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Controls path: Common/IMountable.cs startLine: 61 @@ -287,8 +287,8 @@ items: source: remote: path: VintagestoryApi/Common/IMountable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MountableToTreeAttributes path: Common/IMountable.cs startLine: 70 @@ -324,8 +324,8 @@ items: source: remote: path: VintagestoryApi/Common/IMountable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DidUnmount path: Common/IMountable.cs startLine: 76 @@ -356,8 +356,8 @@ items: source: remote: path: VintagestoryApi/Common/IMountable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DidMount path: Common/IMountable.cs startLine: 82 diff --git a/api/Vintagestory.API.Common.IMountableSupplier.yml b/api/Vintagestory.API.Common.IMountableSupplier.yml index e64e96eb..2251ded4 100644 --- a/api/Vintagestory.API.Common.IMountableSupplier.yml +++ b/api/Vintagestory.API.Common.IMountableSupplier.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/IMountable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IMountableSupplier path: Common/IMountable.cs startLine: 30 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Common/IMountable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MountPoints path: Common/IMountable.cs startLine: 32 @@ -72,8 +72,8 @@ items: source: remote: path: VintagestoryApi/Common/IMountable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsMountedBy path: Common/IMountable.cs startLine: 34 @@ -103,8 +103,8 @@ items: source: remote: path: VintagestoryApi/Common/IMountable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMountOffset path: Common/IMountable.cs startLine: 36 diff --git a/api/Vintagestory.API.Common.INetworkAPI.yml b/api/Vintagestory.API.Common.INetworkAPI.yml index b2cd0b3b..7ebb2b75 100644 --- a/api/Vintagestory.API.Common.INetworkAPI.yml +++ b/api/Vintagestory.API.Common.INetworkAPI.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientNetworkAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: INetworkAPI path: Client/API/IClientNetworkAPI.cs startLine: 6 @@ -42,8 +42,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientNetworkAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterChannel path: Client/API/IClientNetworkAPI.cs startLine: 13 @@ -80,8 +80,8 @@ items: source: remote: path: VintagestoryApi/Client/API/IClientNetworkAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetChannel path: Client/API/IClientNetworkAPI.cs startLine: 20 diff --git a/api/Vintagestory.API.Common.IParticlePropertiesProvider.yml b/api/Vintagestory.API.Common.IParticlePropertiesProvider.yml index dbc66ce8..a645c38c 100644 --- a/api/Vintagestory.API.Common.IParticlePropertiesProvider.yml +++ b/api/Vintagestory.API.Common.IParticlePropertiesProvider.yml @@ -49,8 +49,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IParticlePropertiesProvider path: Common/Particle/IParticlePropertiesProvider.cs startLine: 9 @@ -76,8 +76,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Async path: Common/Particle/IParticlePropertiesProvider.cs startLine: 14 @@ -107,8 +107,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Init path: Common/Particle/IParticlePropertiesProvider.cs startLine: 20 @@ -139,8 +139,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeginParticle path: Common/Particle/IParticlePropertiesProvider.cs startLine: 25 @@ -167,8 +167,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParentVelocityWeight path: Common/Particle/IParticlePropertiesProvider.cs startLine: 27 @@ -196,8 +196,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DieInLiquid path: Common/Particle/IParticlePropertiesProvider.cs startLine: 33 @@ -228,8 +228,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SwimOnLiquid path: Common/Particle/IParticlePropertiesProvider.cs startLine: 35 @@ -257,8 +257,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Bounciness path: Common/Particle/IParticlePropertiesProvider.cs startLine: 37 @@ -286,8 +286,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DieInAir path: Common/Particle/IParticlePropertiesProvider.cs startLine: 43 @@ -318,8 +318,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DieOnRainHeightmap path: Common/Particle/IParticlePropertiesProvider.cs startLine: 48 @@ -349,8 +349,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Quantity path: Common/Particle/IParticlePropertiesProvider.cs startLine: 54 @@ -381,8 +381,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pos path: Common/Particle/IParticlePropertiesProvider.cs startLine: 62 @@ -413,8 +413,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetVelocity path: Common/Particle/IParticlePropertiesProvider.cs startLine: 69 @@ -448,8 +448,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParentVelocity path: Common/Particle/IParticlePropertiesProvider.cs startLine: 71 @@ -477,8 +477,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRgbaColor path: Common/Particle/IParticlePropertiesProvider.cs startLine: 78 @@ -511,8 +511,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OpacityEvolve path: Common/Particle/IParticlePropertiesProvider.cs startLine: 84 @@ -543,8 +543,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RedEvolve path: Common/Particle/IParticlePropertiesProvider.cs startLine: 90 @@ -575,8 +575,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GreenEvolve path: Common/Particle/IParticlePropertiesProvider.cs startLine: 96 @@ -607,8 +607,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlueEvolve path: Common/Particle/IParticlePropertiesProvider.cs startLine: 102 @@ -639,8 +639,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParticleModel path: Common/Particle/IParticlePropertiesProvider.cs startLine: 110 @@ -671,8 +671,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Size path: Common/Particle/IParticlePropertiesProvider.cs startLine: 116 @@ -703,8 +703,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SizeEvolve path: Common/Particle/IParticlePropertiesProvider.cs startLine: 122 @@ -735,8 +735,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VelocityEvolve path: Common/Particle/IParticlePropertiesProvider.cs startLine: 128 @@ -767,8 +767,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GravityEffect path: Common/Particle/IParticlePropertiesProvider.cs startLine: 134 @@ -799,8 +799,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LifeLength path: Common/Particle/IParticlePropertiesProvider.cs startLine: 140 @@ -831,8 +831,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VertexFlags path: Common/Particle/IParticlePropertiesProvider.cs startLine: 146 @@ -863,8 +863,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SelfPropelled path: Common/Particle/IParticlePropertiesProvider.cs startLine: 153 @@ -898,8 +898,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TerrainCollision path: Common/Particle/IParticlePropertiesProvider.cs startLine: 159 @@ -930,8 +930,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Common/Particle/IParticlePropertiesProvider.cs startLine: 165 @@ -962,8 +962,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Particle/IParticlePropertiesProvider.cs startLine: 172 @@ -997,8 +997,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SecondarySpawnInterval path: Common/Particle/IParticlePropertiesProvider.cs startLine: 179 @@ -1032,8 +1032,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SecondaryParticles path: Common/Particle/IParticlePropertiesProvider.cs startLine: 185 @@ -1064,8 +1064,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DeathParticles path: Common/Particle/IParticlePropertiesProvider.cs startLine: 191 @@ -1096,8 +1096,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PrepareForSecondarySpawn path: Common/Particle/IParticlePropertiesProvider.cs startLine: 197 @@ -1128,8 +1128,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/IParticlePropertiesProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RandomVelocityChange path: Common/Particle/IParticlePropertiesProvider.cs startLine: 200 diff --git a/api/Vintagestory.API.Common.IPlayer.yml b/api/Vintagestory.API.Common.IPlayer.yml index b64290c1..7e015c9f 100644 --- a/api/Vintagestory.API.Common.IPlayer.yml +++ b/api/Vintagestory.API.Common.IPlayer.yml @@ -31,8 +31,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IPlayer path: Common/Entity/Player/IPlayer.cs startLine: 13 @@ -58,8 +58,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Role path: Common/Entity/Player/IPlayer.cs startLine: 20 @@ -90,8 +90,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Groups path: Common/Entity/Player/IPlayer.cs startLine: 25 @@ -121,8 +121,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetGroups path: Common/Entity/Player/IPlayer.cs startLine: 31 @@ -152,8 +152,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetGroup path: Common/Entity/Player/IPlayer.cs startLine: 38 @@ -190,8 +190,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Entitlements path: Common/Entity/Player/IPlayer.cs startLine: 43 @@ -221,8 +221,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentBlockSelection path: Common/Entity/Player/IPlayer.cs startLine: 48 @@ -252,8 +252,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentEntitySelection path: Common/Entity/Player/IPlayer.cs startLine: 53 @@ -283,8 +283,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerName path: Common/Entity/Player/IPlayer.cs startLine: 59 @@ -314,8 +314,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerUID path: Common/Entity/Player/IPlayer.cs startLine: 64 @@ -345,8 +345,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClientId path: Common/Entity/Player/IPlayer.cs startLine: 69 @@ -376,8 +376,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Entity path: Common/Entity/Player/IPlayer.cs startLine: 74 @@ -407,8 +407,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WorldData path: Common/Entity/Player/IPlayer.cs startLine: 80 @@ -441,8 +441,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InventoryManager path: Common/Entity/Player/IPlayer.cs startLine: 85 @@ -472,8 +472,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Privileges path: Common/Entity/Player/IPlayer.cs startLine: 92 @@ -506,8 +506,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ImmersiveFpMode path: Common/Entity/Player/IPlayer.cs startLine: 94 @@ -535,8 +535,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HasPrivilege path: Common/Entity/Player/IPlayer.cs startLine: 101 diff --git a/api/Vintagestory.API.Common.IPlayerInventoryManager.yml b/api/Vintagestory.API.Common.IPlayerInventoryManager.yml index 0266eece..9cc0af30 100644 --- a/api/Vintagestory.API.Common.IPlayerInventoryManager.yml +++ b/api/Vintagestory.API.Common.IPlayerInventoryManager.yml @@ -46,8 +46,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayerInventoryManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IPlayerInventoryManager path: Common/Entity/Player/IPlayerInventoryManager.cs startLine: 9 @@ -73,8 +73,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayerInventoryManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ActiveTool path: Common/Entity/Player/IPlayerInventoryManager.cs startLine: 14 @@ -104,8 +104,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayerInventoryManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ActiveHotbarSlotNumber path: Common/Entity/Player/IPlayerInventoryManager.cs startLine: 19 @@ -135,8 +135,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayerInventoryManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ActiveHotbarSlot path: Common/Entity/Player/IPlayerInventoryManager.cs startLine: 25 @@ -167,8 +167,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayerInventoryManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Inventories path: Common/Entity/Player/IPlayerInventoryManager.cs startLine: 31 @@ -201,8 +201,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayerInventoryManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InventoriesOrdered path: Common/Entity/Player/IPlayerInventoryManager.cs startLine: 36 @@ -232,8 +232,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayerInventoryManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OpenedInventories path: Common/Entity/Player/IPlayerInventoryManager.cs startLine: 41 @@ -263,8 +263,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayerInventoryManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MouseItemSlot path: Common/Entity/Player/IPlayerInventoryManager.cs startLine: 49 @@ -295,8 +295,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayerInventoryManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentHoveredSlot path: Common/Entity/Player/IPlayerInventoryManager.cs startLine: 54 @@ -326,8 +326,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayerInventoryManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DropMouseSlotItems path: Common/Entity/Player/IPlayerInventoryManager.cs startLine: 62 @@ -364,8 +364,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayerInventoryManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DropItem path: Common/Entity/Player/IPlayerInventoryManager.cs startLine: 70 @@ -405,8 +405,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayerInventoryManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NotifySlot path: Common/Entity/Player/IPlayerInventoryManager.cs startLine: 78 @@ -443,8 +443,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayerInventoryManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetInventoryName path: Common/Entity/Player/IPlayerInventoryManager.cs startLine: 85 @@ -481,8 +481,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayerInventoryManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetOwnInventory path: Common/Entity/Player/IPlayerInventoryManager.cs startLine: 93 @@ -519,8 +519,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayerInventoryManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetInventory path: Common/Entity/Player/IPlayerInventoryManager.cs startLine: 100 @@ -557,8 +557,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayerInventoryManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHotbarItemstack path: Common/Entity/Player/IPlayerInventoryManager.cs startLine: 108 @@ -595,8 +595,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayerInventoryManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHotbarInventory path: Common/Entity/Player/IPlayerInventoryManager.cs startLine: 114 @@ -626,8 +626,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayerInventoryManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetInventory path: Common/Entity/Player/IPlayerInventoryManager.cs startLine: 122 @@ -667,8 +667,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayerInventoryManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBestSuitedSlot path: Common/Entity/Player/IPlayerInventoryManager.cs startLine: 133 @@ -714,8 +714,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayerInventoryManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBestSuitedSlot path: Common/Entity/Player/IPlayerInventoryManager.cs startLine: 134 @@ -764,8 +764,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayerInventoryManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryTransferAway path: Common/Entity/Player/IPlayerInventoryManager.cs startLine: 145 @@ -811,8 +811,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayerInventoryManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryTransferAway path: Common/Entity/Player/IPlayerInventoryManager.cs startLine: 147 @@ -853,8 +853,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayerInventoryManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryTransferTo path: Common/Entity/Player/IPlayerInventoryManager.cs startLine: 156 @@ -897,8 +897,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayerInventoryManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryGiveItemstack path: Common/Entity/Player/IPlayerInventoryManager.cs startLine: 164 @@ -938,8 +938,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayerInventoryManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OpenInventory path: Common/Entity/Player/IPlayerInventoryManager.cs startLine: 172 @@ -975,8 +975,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayerInventoryManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CloseInventory path: Common/Entity/Player/IPlayerInventoryManager.cs startLine: 178 @@ -1009,8 +1009,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayerInventoryManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Find path: Common/Entity/Player/IPlayerInventoryManager.cs startLine: 185 @@ -1047,8 +1047,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayerInventoryManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HasInventory path: Common/Entity/Player/IPlayerInventoryManager.cs startLine: 192 @@ -1082,8 +1082,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayerInventoryManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DiscardAll path: Common/Entity/Player/IPlayerInventoryManager.cs startLine: 197 @@ -1110,8 +1110,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayerInventoryManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnDeath path: Common/Entity/Player/IPlayerInventoryManager.cs startLine: 202 @@ -1138,8 +1138,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayerInventoryManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DropAllInventoryItems path: Common/Entity/Player/IPlayerInventoryManager.cs startLine: 208 @@ -1170,8 +1170,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IPlayerInventoryManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BroadcastHotbarSlot path: Common/Entity/Player/IPlayerInventoryManager.cs startLine: 214 diff --git a/api/Vintagestory.API.Common.IPlayerRole.yml b/api/Vintagestory.API.Common.IPlayerRole.yml index 90b816f5..66844d0e 100644 --- a/api/Vintagestory.API.Common.IPlayerRole.yml +++ b/api/Vintagestory.API.Common.IPlayerRole.yml @@ -33,8 +33,8 @@ items: source: remote: path: VintagestoryApi/Common/IPlayerPrivilegeGroup.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IPlayerRole path: Common/IPlayerPrivilegeGroup.cs startLine: 7 @@ -58,8 +58,8 @@ items: source: remote: path: VintagestoryApi/Common/IPlayerPrivilegeGroup.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AutoGrant path: Common/IPlayerPrivilegeGroup.cs startLine: 9 @@ -87,8 +87,8 @@ items: source: remote: path: VintagestoryApi/Common/IPlayerPrivilegeGroup.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LandClaimAllowance path: Common/IPlayerPrivilegeGroup.cs startLine: 10 @@ -116,8 +116,8 @@ items: source: remote: path: VintagestoryApi/Common/IPlayerPrivilegeGroup.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LandClaimMinSize path: Common/IPlayerPrivilegeGroup.cs startLine: 11 @@ -145,8 +145,8 @@ items: source: remote: path: VintagestoryApi/Common/IPlayerPrivilegeGroup.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LandClaimMaxAreas path: Common/IPlayerPrivilegeGroup.cs startLine: 12 @@ -174,8 +174,8 @@ items: source: remote: path: VintagestoryApi/Common/IPlayerPrivilegeGroup.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Common/IPlayerPrivilegeGroup.cs startLine: 14 @@ -203,8 +203,8 @@ items: source: remote: path: VintagestoryApi/Common/IPlayerPrivilegeGroup.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Name path: Common/IPlayerPrivilegeGroup.cs startLine: 15 @@ -232,8 +232,8 @@ items: source: remote: path: VintagestoryApi/Common/IPlayerPrivilegeGroup.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Description path: Common/IPlayerPrivilegeGroup.cs startLine: 16 @@ -261,8 +261,8 @@ items: source: remote: path: VintagestoryApi/Common/IPlayerPrivilegeGroup.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PrivilegeLevel path: Common/IPlayerPrivilegeGroup.cs startLine: 17 @@ -290,8 +290,8 @@ items: source: remote: path: VintagestoryApi/Common/IPlayerPrivilegeGroup.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DefaultSpawn path: Common/IPlayerPrivilegeGroup.cs startLine: 18 @@ -319,8 +319,8 @@ items: source: remote: path: VintagestoryApi/Common/IPlayerPrivilegeGroup.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ForcedSpawn path: Common/IPlayerPrivilegeGroup.cs startLine: 19 @@ -348,8 +348,8 @@ items: source: remote: path: VintagestoryApi/Common/IPlayerPrivilegeGroup.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Privileges path: Common/IPlayerPrivilegeGroup.cs startLine: 21 @@ -377,8 +377,8 @@ items: source: remote: path: VintagestoryApi/Common/IPlayerPrivilegeGroup.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RuntimePrivileges path: Common/IPlayerPrivilegeGroup.cs startLine: 23 @@ -406,8 +406,8 @@ items: source: remote: path: VintagestoryApi/Common/IPlayerPrivilegeGroup.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DefaultGameMode path: Common/IPlayerPrivilegeGroup.cs startLine: 25 @@ -435,8 +435,8 @@ items: source: remote: path: VintagestoryApi/Common/IPlayerPrivilegeGroup.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Color path: Common/IPlayerPrivilegeGroup.cs startLine: 27 @@ -464,8 +464,8 @@ items: source: remote: path: VintagestoryApi/Common/IPlayerPrivilegeGroup.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsSuperior path: Common/IPlayerPrivilegeGroup.cs startLine: 29 @@ -495,8 +495,8 @@ items: source: remote: path: VintagestoryApi/Common/IPlayerPrivilegeGroup.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EqualLevel path: Common/IPlayerPrivilegeGroup.cs startLine: 31 @@ -526,8 +526,8 @@ items: source: remote: path: VintagestoryApi/Common/IPlayerPrivilegeGroup.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GrantPrivilege path: Common/IPlayerPrivilegeGroup.cs startLine: 33 @@ -558,8 +558,8 @@ items: source: remote: path: VintagestoryApi/Common/IPlayerPrivilegeGroup.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RevokePrivilege path: Common/IPlayerPrivilegeGroup.cs startLine: 34 diff --git a/api/Vintagestory.API.Common.IRecipeBase-1.yml b/api/Vintagestory.API.Common.IRecipeBase-1.yml index aa42cfb5..64666245 100644 --- a/api/Vintagestory.API.Common.IRecipeBase-1.yml +++ b/api/Vintagestory.API.Common.IRecipeBase-1.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/RecipeBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IRecipeBase path: Common/Crafting/RecipeBase.cs startLine: 16 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/RecipeBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Name path: Common/Crafting/RecipeBase.cs startLine: 18 @@ -83,8 +83,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/RecipeBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Enabled path: Common/Crafting/RecipeBase.cs startLine: 19 @@ -114,8 +114,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/RecipeBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetNameToCodeMapping path: Common/Crafting/RecipeBase.cs startLine: 22 @@ -147,8 +147,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/RecipeBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Resolve path: Common/Crafting/RecipeBase.cs startLine: 23 @@ -183,8 +183,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/RecipeBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Crafting/RecipeBase.cs startLine: 24 @@ -213,8 +213,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/RecipeBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Ingredients path: Common/Crafting/RecipeBase.cs startLine: 26 @@ -244,8 +244,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/RecipeBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Output path: Common/Crafting/RecipeBase.cs startLine: 28 diff --git a/api/Vintagestory.API.Common.IRecipeIngredient.yml b/api/Vintagestory.API.Common.IRecipeIngredient.yml index ba7106fd..85cba3af 100644 --- a/api/Vintagestory.API.Common.IRecipeIngredient.yml +++ b/api/Vintagestory.API.Common.IRecipeIngredient.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/RecipeBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IRecipeIngredient path: Common/Crafting/RecipeBase.cs startLine: 5 @@ -42,8 +42,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/RecipeBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Name path: Common/Crafting/RecipeBase.cs startLine: 7 @@ -71,8 +71,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/RecipeBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Common/Crafting/RecipeBase.cs startLine: 8 diff --git a/api/Vintagestory.API.Common.IRecipeOutput.yml b/api/Vintagestory.API.Common.IRecipeOutput.yml index 16120326..96620413 100644 --- a/api/Vintagestory.API.Common.IRecipeOutput.yml +++ b/api/Vintagestory.API.Common.IRecipeOutput.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/RecipeBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IRecipeOutput path: Common/Crafting/RecipeBase.cs startLine: 11 @@ -41,8 +41,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/RecipeBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FillPlaceHolder path: Common/Crafting/RecipeBase.cs startLine: 13 diff --git a/api/Vintagestory.API.Common.IResolvableCollectible.yml b/api/Vintagestory.API.Common.IResolvableCollectible.yml index 713285bf..3697590f 100644 --- a/api/Vintagestory.API.Common.IResolvableCollectible.yml +++ b/api/Vintagestory.API.Common.IResolvableCollectible.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/IResolvableCollectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IResolvableCollectible path: Common/Collectible/IResolvableCollectible.cs startLine: 5 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/IResolvableCollectible.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Resolve path: Common/Collectible/IResolvableCollectible.cs startLine: 7 diff --git a/api/Vintagestory.API.Common.IRotatable.yml b/api/Vintagestory.API.Common.IRotatable.yml index dabb6dce..fb3a0270 100644 --- a/api/Vintagestory.API.Common.IRotatable.yml +++ b/api/Vintagestory.API.Common.IRotatable.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/IRotatable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IRotatable path: Common/Collectible/Block/IRotatable.cs startLine: 10 @@ -46,8 +46,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/IRotatable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnTransformed path: Common/Collectible/Block/IRotatable.cs startLine: 21 diff --git a/api/Vintagestory.API.Common.IServerMapChunk.yml b/api/Vintagestory.API.Common.IServerMapChunk.yml index 9f763a51..f31bb307 100644 --- a/api/Vintagestory.API.Common.IServerMapChunk.yml +++ b/api/Vintagestory.API.Common.IServerMapChunk.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IMapChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IServerMapChunk path: Common/API/IMapChunk.cs startLine: 7 diff --git a/api/Vintagestory.API.Common.ISlotProvider.yml b/api/Vintagestory.API.Common.ISlotProvider.yml index 4bc5066f..a81f53b1 100644 --- a/api/Vintagestory.API.Common.ISlotProvider.yml +++ b/api/Vintagestory.API.Common.ISlotProvider.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ISlotProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ISlotProvider path: Common/Inventory/ISlotProvider.cs startLine: 2 @@ -41,8 +41,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ISlotProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Slots path: Common/Inventory/ISlotProvider.cs startLine: 4 diff --git a/api/Vintagestory.API.Common.ITextureLocationDictionary.yml b/api/Vintagestory.API.Common.ITextureLocationDictionary.yml index 39a9322a..c50b9464 100644 --- a/api/Vintagestory.API.Common.ITextureLocationDictionary.yml +++ b/api/Vintagestory.API.Common.ITextureLocationDictionary.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ITextureLocationDictionary path: Common/Assets/AssetLocation.cs startLine: 10 @@ -46,8 +46,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddTextureLocation path: Common/Assets/AssetLocation.cs startLine: 12 @@ -77,8 +77,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetOrAddTextureLocation path: Common/Assets/AssetLocation.cs startLine: 13 @@ -108,8 +108,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Common/Assets/AssetLocation.cs startLine: 15 @@ -142,8 +142,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ContainsKey path: Common/Assets/AssetLocation.cs startLine: 17 @@ -173,8 +173,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetTextureLocation path: Common/Assets/AssetLocation.cs startLine: 18 @@ -202,8 +202,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CollectAndBakeTexturesFromShape path: Common/Assets/AssetLocation.cs startLine: 19 diff --git a/api/Vintagestory.API.Common.ITimedDespawn.yml b/api/Vintagestory.API.Common.ITimedDespawn.yml index c074933b..4dcf254a 100644 --- a/api/Vintagestory.API.Common.ITimedDespawn.yml +++ b/api/Vintagestory.API.Common.ITimedDespawn.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Common/EntityBehavior/ITimedDespawn.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ITimedDespawn path: Common/EntityBehavior/ITimedDespawn.cs startLine: 2 @@ -42,8 +42,8 @@ items: source: remote: path: VintagestoryApi/Common/EntityBehavior/ITimedDespawn.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetTimer path: Common/EntityBehavior/ITimedDespawn.cs startLine: 4 @@ -74,8 +74,8 @@ items: source: remote: path: VintagestoryApi/Common/EntityBehavior/ITimedDespawn.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetForcedCalendarDespawn path: Common/EntityBehavior/ITimedDespawn.cs startLine: 5 diff --git a/api/Vintagestory.API.Common.IWearableShapeSupplier.yml b/api/Vintagestory.API.Common.IWearableShapeSupplier.yml index 3d88d60a..981ed1ce 100644 --- a/api/Vintagestory.API.Common.IWearableShapeSupplier.yml +++ b/api/Vintagestory.API.Common.IWearableShapeSupplier.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IWearableShapeSupplier path: Common/Entity/EntityAgent.cs startLine: 17 @@ -41,8 +41,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityAgent.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetShape path: Common/Entity/EntityAgent.cs startLine: 26 diff --git a/api/Vintagestory.API.Common.IWithDrawnHeight.yml b/api/Vintagestory.API.Common.IWithDrawnHeight.yml index e456bd91..8c49c3d0 100644 --- a/api/Vintagestory.API.Common.IWithDrawnHeight.yml +++ b/api/Vintagestory.API.Common.IWithDrawnHeight.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/IWithDrawnHeight.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IWithDrawnHeight path: Common/Collectible/Block/IWithDrawnHeight.cs startLine: 5 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/IWithDrawnHeight.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: drawnHeight path: Common/Collectible/Block/IWithDrawnHeight.cs startLine: 10 diff --git a/api/Vintagestory.API.Common.IWorldAccessor.yml b/api/Vintagestory.API.Common.IWorldAccessor.yml index 331d7b17..809f2643 100644 --- a/api/Vintagestory.API.Common.IWorldAccessor.yml +++ b/api/Vintagestory.API.Common.IWorldAccessor.yml @@ -100,8 +100,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IWorldAccessor path: Common/API/IWorldAccessor.cs startLine: 22 @@ -127,8 +127,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Config path: Common/API/IWorldAccessor.cs startLine: 27 @@ -158,8 +158,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DefaultSpawnPosition path: Common/API/IWorldAccessor.cs startLine: 32 @@ -189,8 +189,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FrameProfiler path: Common/API/IWorldAccessor.cs startLine: 37 @@ -220,8 +220,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Api path: Common/API/IWorldAccessor.cs startLine: 42 @@ -251,8 +251,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Claims path: Common/API/IWorldAccessor.cs startLine: 47 @@ -282,8 +282,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadedChunkIndices path: Common/API/IWorldAccessor.cs startLine: 58 @@ -322,8 +322,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadedMapChunkIndices path: Common/API/IWorldAccessor.cs startLine: 63 @@ -353,8 +353,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockLightLevels path: Common/API/IWorldAccessor.cs startLine: 68 @@ -384,8 +384,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SunLightLevels path: Common/API/IWorldAccessor.cs startLine: 73 @@ -415,8 +415,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SeaLevel path: Common/API/IWorldAccessor.cs startLine: 78 @@ -446,8 +446,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Seed path: Common/API/IWorldAccessor.cs startLine: 83 @@ -477,8 +477,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SavegameIdentifier path: Common/API/IWorldAccessor.cs startLine: 88 @@ -508,8 +508,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SunBrightness path: Common/API/IWorldAccessor.cs startLine: 93 @@ -539,8 +539,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityDebugMode path: Common/API/IWorldAccessor.cs startLine: 98 @@ -570,8 +570,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AssetManager path: Common/API/IWorldAccessor.cs startLine: 103 @@ -601,8 +601,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Logger path: Common/API/IWorldAccessor.cs startLine: 108 @@ -632,8 +632,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Side path: Common/API/IWorldAccessor.cs startLine: 113 @@ -663,8 +663,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockAccessor path: Common/API/IWorldAccessor.cs startLine: 118 @@ -694,8 +694,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BulkBlockAccessor path: Common/API/IWorldAccessor.cs startLine: 123 @@ -725,8 +725,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClassRegistry path: Common/API/IWorldAccessor.cs startLine: 128 @@ -756,8 +756,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Calendar path: Common/API/IWorldAccessor.cs startLine: 133 @@ -787,8 +787,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CollisionTester path: Common/API/IWorldAccessor.cs startLine: 138 @@ -818,8 +818,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rand path: Common/API/IWorldAccessor.cs startLine: 143 @@ -849,8 +849,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ElapsedMilliseconds path: Common/API/IWorldAccessor.cs startLine: 148 @@ -880,8 +880,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Collectibles path: Common/API/IWorldAccessor.cs startLine: 153 @@ -911,8 +911,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Blocks path: Common/API/IWorldAccessor.cs startLine: 158 @@ -942,8 +942,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Items path: Common/API/IWorldAccessor.cs startLine: 163 @@ -973,8 +973,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityTypes path: Common/API/IWorldAccessor.cs startLine: 168 @@ -1004,8 +1004,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityTypeCodes path: Common/API/IWorldAccessor.cs startLine: 173 @@ -1035,8 +1035,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GridRecipes path: Common/API/IWorldAccessor.cs startLine: 178 @@ -1066,8 +1066,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRecipeRegistry path: Common/API/IWorldAccessor.cs startLine: 185 @@ -1104,8 +1104,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DefaultEntityTrackingRange path: Common/API/IWorldAccessor.cs startLine: 190 @@ -1135,8 +1135,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetItem path: Common/API/IWorldAccessor.cs startLine: 197 @@ -1173,8 +1173,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlock path: Common/API/IWorldAccessor.cs startLine: 204 @@ -1211,8 +1211,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SearchBlocks path: Common/API/IWorldAccessor.cs startLine: 211 @@ -1246,8 +1246,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SearchItems path: Common/API/IWorldAccessor.cs startLine: 218 @@ -1281,8 +1281,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetItem path: Common/API/IWorldAccessor.cs startLine: 225 @@ -1316,8 +1316,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlock path: Common/API/IWorldAccessor.cs startLine: 232 @@ -1351,8 +1351,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetEntityType path: Common/API/IWorldAccessor.cs startLine: 239 @@ -1386,8 +1386,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SpawnItemEntity path: Common/API/IWorldAccessor.cs startLine: 248 @@ -1429,8 +1429,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SpawnEntity path: Common/API/IWorldAccessor.cs startLine: 255 @@ -1464,8 +1464,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetEntitiesAround path: Common/API/IWorldAccessor.cs startLine: 265 @@ -1511,8 +1511,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetEntitiesInsideCuboid path: Common/API/IWorldAccessor.cs startLine: 274 @@ -1555,8 +1555,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetPlayersAround path: Common/API/IWorldAccessor.cs startLine: 284 @@ -1602,8 +1602,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetNearestEntity path: Common/API/IWorldAccessor.cs startLine: 294 @@ -1649,8 +1649,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetEntityById path: Common/API/IWorldAccessor.cs startLine: 301 @@ -1687,8 +1687,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetIntersectingEntities path: Common/API/IWorldAccessor.cs startLine: 310 @@ -1731,8 +1731,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NearestPlayer path: Common/API/IWorldAccessor.cs startLine: 320 @@ -1775,8 +1775,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AllOnlinePlayers path: Common/API/IWorldAccessor.cs startLine: 326 @@ -1807,8 +1807,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AllPlayers path: Common/API/IWorldAccessor.cs startLine: 332 @@ -1839,8 +1839,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerByUid path: Common/API/IWorldAccessor.cs startLine: 341 @@ -1877,8 +1877,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlaySoundAt path: Common/API/IWorldAccessor.cs startLine: 355 @@ -1933,8 +1933,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlaySoundAt path: Common/API/IWorldAccessor.cs startLine: 366 @@ -1983,8 +1983,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlaySoundAt path: Common/API/IWorldAccessor.cs startLine: 377 @@ -2033,8 +2033,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlaySoundAt path: Common/API/IWorldAccessor.cs startLine: 390 @@ -2089,8 +2089,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlaySoundAt path: Common/API/IWorldAccessor.cs startLine: 392 @@ -2137,8 +2137,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlaySoundAt path: Common/API/IWorldAccessor.cs startLine: 403 @@ -2187,8 +2187,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlaySoundFor path: Common/API/IWorldAccessor.cs startLine: 413 @@ -2234,8 +2234,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlaySoundFor path: Common/API/IWorldAccessor.cs startLine: 414 @@ -2274,8 +2274,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SpawnParticles path: Common/API/IWorldAccessor.cs startLine: 431 @@ -2339,8 +2339,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SpawnParticles path: Common/API/IWorldAccessor.cs startLine: 438 @@ -2374,8 +2374,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SpawnCubeParticles path: Common/API/IWorldAccessor.cs startLine: 451 @@ -2427,8 +2427,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SpawnCubeParticles path: Common/API/IWorldAccessor.cs startLine: 464 @@ -2480,8 +2480,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RayTraceForSelection path: Common/API/IWorldAccessor.cs startLine: 478 @@ -2530,8 +2530,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RayTraceForSelection path: Common/API/IWorldAccessor.cs startLine: 491 @@ -2583,8 +2583,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RayTraceForSelection path: Common/API/IWorldAccessor.cs startLine: 505 @@ -2639,8 +2639,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RayTraceForSelection path: Common/API/IWorldAccessor.cs startLine: 515 @@ -2686,8 +2686,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterGameTickListener path: Common/API/IWorldAccessor.cs startLine: 525 @@ -2730,8 +2730,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UnregisterGameTickListener path: Common/API/IWorldAccessor.cs startLine: 531 @@ -2765,8 +2765,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterCallback path: Common/API/IWorldAccessor.cs startLine: 539 @@ -2806,8 +2806,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterCallbackUnique path: Common/API/IWorldAccessor.cs startLine: 549 @@ -2853,8 +2853,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterCallback path: Common/API/IWorldAccessor.cs startLine: 559 @@ -2897,8 +2897,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerHasPrivilege path: Common/API/IWorldAccessor.cs startLine: 567 @@ -2938,8 +2938,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UnregisterCallback path: Common/API/IWorldAccessor.cs startLine: 573 @@ -2973,8 +2973,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InteresectionTester path: Common/API/IWorldAccessor.cs startLine: 579 @@ -3004,8 +3004,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HighlightBlocks path: Common/API/IWorldAccessor.cs startLine: 594 @@ -3057,8 +3057,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HighlightBlocks path: Common/API/IWorldAccessor.cs startLine: 604 @@ -3104,8 +3104,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlockAccessor path: Common/API/IWorldAccessor.cs startLine: 616 @@ -3151,8 +3151,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlockAccessorBulkUpdate path: Common/API/IWorldAccessor.cs startLine: 626 @@ -3195,8 +3195,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlockAccessorBulkMinimalUpdate path: Common/API/IWorldAccessor.cs startLine: 634 @@ -3236,8 +3236,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlockAccessorMapChunkLoading path: Common/API/IWorldAccessor.cs startLine: 639 @@ -3274,8 +3274,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlockAccessorRevertable path: Common/API/IWorldAccessor.cs startLine: 648 @@ -3318,8 +3318,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlockAccessorPrefetch path: Common/API/IWorldAccessor.cs startLine: 656 @@ -3359,8 +3359,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCachingBlockAccessor path: Common/API/IWorldAccessor.cs startLine: 665 @@ -3403,8 +3403,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetLockFreeBlockAccessor path: Common/API/IWorldAccessor.cs startLine: 672 diff --git a/api/Vintagestory.API.Common.IWorldChunk.yml b/api/Vintagestory.API.Common.IWorldChunk.yml index 7b11acd6..57f2507b 100644 --- a/api/Vintagestory.API.Common.IWorldChunk.yml +++ b/api/Vintagestory.API.Common.IWorldChunk.yml @@ -57,8 +57,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IWorldChunk path: Common/API/IWorldChunk.cs startLine: 95 @@ -82,8 +82,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Empty path: Common/API/IWorldChunk.cs startLine: 97 @@ -111,8 +111,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MapChunk path: Common/API/IWorldChunk.cs startLine: 101 @@ -142,8 +142,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Data path: Common/API/IWorldChunk.cs startLine: 106 @@ -173,8 +173,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Blocks path: Common/API/IWorldChunk.cs startLine: 111 @@ -216,8 +216,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Lighting path: Common/API/IWorldChunk.cs startLine: 117 @@ -247,8 +247,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaybeBlocks path: Common/API/IWorldChunk.cs startLine: 122 @@ -278,8 +278,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Entities path: Common/API/IWorldChunk.cs startLine: 127 @@ -309,8 +309,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntitiesCount path: Common/API/IWorldChunk.cs startLine: 132 @@ -340,8 +340,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockEntities path: Common/API/IWorldChunk.cs startLine: 137 @@ -371,8 +371,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Unpack path: Common/API/IWorldChunk.cs startLine: 142 @@ -399,8 +399,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Unpack_ReadOnly path: Common/API/IWorldChunk.cs startLine: 147 @@ -429,8 +429,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UnpackAndReadBlock path: Common/API/IWorldChunk.cs startLine: 153 @@ -470,8 +470,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Unpack_AndReadLight path: Common/API/IWorldChunk.cs startLine: 159 @@ -509,8 +509,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Unpack_AndReadLight path: Common/API/IWorldChunk.cs startLine: 165 @@ -550,8 +550,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MarkModified path: Common/API/IWorldChunk.cs startLine: 170 @@ -578,8 +578,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MarkFresh path: Common/API/IWorldChunk.cs startLine: 175 @@ -606,8 +606,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LightPositions path: Common/API/IWorldChunk.cs startLine: 180 @@ -637,8 +637,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Disposed path: Common/API/IWorldChunk.cs startLine: 185 @@ -668,8 +668,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddEntity path: Common/API/IWorldChunk.cs startLine: 191 @@ -700,8 +700,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveEntity path: Common/API/IWorldChunk.cs startLine: 198 @@ -738,8 +738,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetModdata path: Common/API/IWorldChunk.cs startLine: 207 @@ -779,8 +779,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveModdata path: Common/API/IWorldChunk.cs startLine: 213 @@ -814,8 +814,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetModdata path: Common/API/IWorldChunk.cs startLine: 220 @@ -852,8 +852,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetModdata path: Common/API/IWorldChunk.cs startLine: 230 @@ -896,8 +896,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetModdata path: Common/API/IWorldChunk.cs startLine: 239 @@ -940,8 +940,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LiveModData path: Common/API/IWorldChunk.cs startLine: 244 @@ -971,8 +971,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetLocalBlockAtBlockPos path: Common/API/IWorldChunk.cs startLine: 254 @@ -1009,8 +1009,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetLocalBlockAtBlockPos path: Common/API/IWorldChunk.cs startLine: 256 @@ -1051,8 +1051,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetLocalBlockAtBlockPos_LockFree path: Common/API/IWorldChunk.cs startLine: 265 @@ -1095,8 +1095,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetLocalBlockEntityAtBlockPos path: Common/API/IWorldChunk.cs startLine: 272 @@ -1130,8 +1130,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetDecor path: Common/API/IWorldChunk.cs startLine: 281 @@ -1174,8 +1174,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetDecor path: Common/API/IWorldChunk.cs startLine: 292 @@ -1218,8 +1218,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BreakDecor path: Common/API/IWorldChunk.cs startLine: 301 @@ -1264,8 +1264,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BreakAllDecorFast path: Common/API/IWorldChunk.cs startLine: 310 @@ -1308,8 +1308,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDecors path: Common/API/IWorldChunk.cs startLine: 318 @@ -1346,8 +1346,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDecor path: Common/API/IWorldChunk.cs startLine: 320 @@ -1384,8 +1384,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetDecors path: Common/API/IWorldChunk.cs startLine: 326 @@ -1419,8 +1419,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AdjustSelectionBoxForDecor path: Common/API/IWorldChunk.cs startLine: 335 @@ -1463,8 +1463,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FinishLightDoubleBuffering path: Common/API/IWorldChunk.cs startLine: 340 @@ -1491,8 +1491,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetLightAbsorptionAt path: Common/API/IWorldChunk.cs startLine: 349 @@ -1535,8 +1535,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AcquireBlockReadLock path: Common/API/IWorldChunk.cs startLine: 356 @@ -1568,8 +1568,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IWorldChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReleaseBlockReadLock path: Common/API/IWorldChunk.cs startLine: 362 diff --git a/api/Vintagestory.API.Common.IWorldPlayerData.yml b/api/Vintagestory.API.Common.IWorldPlayerData.yml index 46e08300..18cd4c11 100644 --- a/api/Vintagestory.API.Common.IWorldPlayerData.yml +++ b/api/Vintagestory.API.Common.IWorldPlayerData.yml @@ -31,8 +31,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IWorldPlayerData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IWorldPlayerData path: Common/Entity/Player/IWorldPlayerData.cs startLine: 7 @@ -61,8 +61,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IWorldPlayerData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerUID path: Common/Entity/Player/IWorldPlayerData.cs startLine: 12 @@ -92,8 +92,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IWorldPlayerData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityPlayer path: Common/Entity/Player/IWorldPlayerData.cs startLine: 17 @@ -123,8 +123,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IWorldPlayerData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityControls path: Common/Entity/Player/IWorldPlayerData.cs startLine: 22 @@ -154,8 +154,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IWorldPlayerData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LastApprovedViewDistance path: Common/Entity/Player/IWorldPlayerData.cs startLine: 27 @@ -185,8 +185,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IWorldPlayerData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DesiredViewDistance path: Common/Entity/Player/IWorldPlayerData.cs startLine: 32 @@ -216,8 +216,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IWorldPlayerData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentGameMode path: Common/Entity/Player/IWorldPlayerData.cs startLine: 37 @@ -247,8 +247,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IWorldPlayerData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FreeMove path: Common/Entity/Player/IWorldPlayerData.cs startLine: 43 @@ -278,8 +278,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IWorldPlayerData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FreeMovePlaneLock path: Common/Entity/Player/IWorldPlayerData.cs startLine: 48 @@ -309,8 +309,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IWorldPlayerData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NoClip path: Common/Entity/Player/IWorldPlayerData.cs startLine: 53 @@ -340,8 +340,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IWorldPlayerData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MoveSpeedMultiplier path: Common/Entity/Player/IWorldPlayerData.cs startLine: 58 @@ -371,8 +371,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IWorldPlayerData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PickingRange path: Common/Entity/Player/IWorldPlayerData.cs startLine: 63 @@ -402,8 +402,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IWorldPlayerData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AreaSelectionMode path: Common/Entity/Player/IWorldPlayerData.cs startLine: 68 @@ -433,8 +433,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IWorldPlayerData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Deaths path: Common/Entity/Player/IWorldPlayerData.cs startLine: 71 @@ -462,8 +462,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IWorldPlayerData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetModdata path: Common/Entity/Player/IWorldPlayerData.cs startLine: 78 @@ -500,8 +500,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IWorldPlayerData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveModdata path: Common/Entity/Player/IWorldPlayerData.cs startLine: 84 @@ -535,8 +535,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/Player/IWorldPlayerData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetModdata path: Common/Entity/Player/IWorldPlayerData.cs startLine: 91 diff --git a/api/Vintagestory.API.Common.IXPlatformInterface.yml b/api/Vintagestory.API.Common.IXPlatformInterface.yml index f2f8d23f..052dbb88 100644 --- a/api/Vintagestory.API.Common.IXPlatformInterface.yml +++ b/api/Vintagestory.API.Common.IXPlatformInterface.yml @@ -26,8 +26,8 @@ items: source: remote: path: VintagestoryApi/Common/Platform/IPlatformUI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IXPlatformInterface path: Common/Platform/IPlatformUI.cs startLine: 9 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Common/Platform/IPlatformUI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Window path: Common/Platform/IPlatformUI.cs startLine: 12 @@ -82,8 +82,8 @@ items: source: remote: path: VintagestoryApi/Common/Platform/IPlatformUI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetClipboardText path: Common/Platform/IPlatformUI.cs startLine: 14 @@ -114,8 +114,8 @@ items: source: remote: path: VintagestoryApi/Common/Platform/IPlatformUI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetClipboardText path: Common/Platform/IPlatformUI.cs startLine: 16 @@ -142,8 +142,8 @@ items: source: remote: path: VintagestoryApi/Common/Platform/IPlatformUI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShowMessageBox path: Common/Platform/IPlatformUI.cs startLine: 18 @@ -176,8 +176,8 @@ items: source: remote: path: VintagestoryApi/Common/Platform/IPlatformUI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetScreenSize path: Common/Platform/IPlatformUI.cs startLine: 20 @@ -204,8 +204,8 @@ items: source: remote: path: VintagestoryApi/Common/Platform/IPlatformUI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAviWriter path: Common/Platform/IPlatformUI.cs startLine: 22 @@ -242,8 +242,8 @@ items: source: remote: path: VintagestoryApi/Common/Platform/IPlatformUI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AvailableCodecs path: Common/Platform/IPlatformUI.cs startLine: 23 @@ -270,8 +270,8 @@ items: source: remote: path: VintagestoryApi/Common/Platform/IPlatformUI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MoveFileToRecyclebin path: Common/Platform/IPlatformUI.cs startLine: 25 @@ -302,8 +302,8 @@ items: source: remote: path: VintagestoryApi/Common/Platform/IPlatformUI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetFreeDiskSpace path: Common/Platform/IPlatformUI.cs startLine: 32 @@ -340,8 +340,8 @@ items: source: remote: path: VintagestoryApi/Common/Platform/IPlatformUI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRamCapacity path: Common/Platform/IPlatformUI.cs startLine: 38 @@ -371,8 +371,8 @@ items: source: remote: path: VintagestoryApi/Common/Platform/IPlatformUI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FocusWindow path: Common/Platform/IPlatformUI.cs startLine: 40 diff --git a/api/Vintagestory.API.Common.IntArgParser.yml b/api/Vintagestory.API.Common.IntArgParser.yml index 6537d0b3..87b25f96 100644 --- a/api/Vintagestory.API.Common.IntArgParser.yml +++ b/api/Vintagestory.API.Common.IntArgParser.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IntArgParser path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1617 @@ -74,8 +74,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1623 @@ -114,8 +114,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSyntaxExplanation path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1629 @@ -150,8 +150,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1634 @@ -186,8 +186,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValidRange path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1641 @@ -219,8 +219,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1646 @@ -249,8 +249,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1651 @@ -280,8 +280,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1658 @@ -322,8 +322,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1676 diff --git a/api/Vintagestory.API.Common.InventoryBase.yml b/api/Vintagestory.API.Common.InventoryBase.yml index 6359d884..3cd2dabf 100644 --- a/api/Vintagestory.API.Common.InventoryBase.yml +++ b/api/Vintagestory.API.Common.InventoryBase.yml @@ -85,8 +85,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InventoryBase path: Common/Inventory/InventoryBase.cs startLine: 29 @@ -135,8 +135,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Api path: Common/Inventory/InventoryBase.cs startLine: 34 @@ -164,8 +164,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pos path: Common/Inventory/InventoryBase.cs startLine: 39 @@ -193,8 +193,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxContentDimensions path: Common/Inventory/InventoryBase.cs startLine: 44 @@ -224,8 +224,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: baseWeight path: Common/Inventory/InventoryBase.cs startLine: 49 @@ -253,8 +253,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: className path: Common/Inventory/InventoryBase.cs startLine: 54 @@ -282,8 +282,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: instanceID path: Common/Inventory/InventoryBase.cs startLine: 59 @@ -311,8 +311,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: lastChangedSinceServerStart path: Common/Inventory/InventoryBase.cs startLine: 64 @@ -340,8 +340,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: openedByPlayerGUIds path: Common/Inventory/InventoryBase.cs startLine: 69 @@ -369,8 +369,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InvNetworkUtil path: Common/Inventory/InventoryBase.cs startLine: 74 @@ -398,8 +398,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: dirtySlots path: Common/Inventory/InventoryBase.cs startLine: 79 @@ -427,8 +427,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InventoryID path: Common/Inventory/InventoryBase.cs startLine: 84 @@ -460,8 +460,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClassName path: Common/Inventory/InventoryBase.cs startLine: 89 @@ -493,8 +493,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LastChanged path: Common/Inventory/InventoryBase.cs startLine: 94 @@ -526,8 +526,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Count path: Common/Inventory/InventoryBase.cs startLine: 100 @@ -559,8 +559,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CountForNetworkPacket path: Common/Inventory/InventoryBase.cs startLine: 102 @@ -588,8 +588,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Common/Inventory/InventoryBase.cs startLine: 111 @@ -631,8 +631,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsDirty path: Common/Inventory/InventoryBase.cs startLine: 118 @@ -662,8 +662,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DirtySlots path: Common/Inventory/InventoryBase.cs startLine: 123 @@ -695,8 +695,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TakeLocked path: Common/Inventory/InventoryBase.cs startLine: 128 @@ -728,8 +728,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PutLocked path: Common/Inventory/InventoryBase.cs startLine: 133 @@ -761,8 +761,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveOnClose path: Common/Inventory/InventoryBase.cs startLine: 138 @@ -794,8 +794,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SlotModified path: Common/Inventory/InventoryBase.cs startLine: 143 @@ -825,8 +825,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SlotNotified path: Common/Inventory/InventoryBase.cs startLine: 148 @@ -856,8 +856,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnInventoryOpened path: Common/Inventory/InventoryBase.cs startLine: 153 @@ -885,8 +885,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnInventoryClosed path: Common/Inventory/InventoryBase.cs startLine: 158 @@ -914,8 +914,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnAcquireTransitionSpeed path: Common/Inventory/InventoryBase.cs startLine: 163 @@ -943,8 +943,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Empty path: Common/Inventory/InventoryBase.cs startLine: 169 @@ -976,8 +976,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FirstNonEmptySlot path: Common/Inventory/InventoryBase.cs startLine: 184 @@ -1007,8 +1007,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Inventory/InventoryBase.cs startLine: 204 @@ -1048,8 +1048,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Inventory/InventoryBase.cs startLine: 222 @@ -1086,8 +1086,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LateInitialize path: Common/Inventory/InventoryBase.cs startLine: 245 @@ -1124,8 +1124,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AfterBlocksLoaded path: Common/Inventory/InventoryBase.cs startLine: 267 @@ -1156,8 +1156,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ResolveBlocksOrItems path: Common/Inventory/InventoryBase.cs startLine: 275 @@ -1184,8 +1184,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSlotId path: Common/Inventory/InventoryBase.cs startLine: 294 @@ -1221,8 +1221,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBestSuitedSlot path: Common/Inventory/InventoryBase.cs startLine: 307 @@ -1272,8 +1272,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBestSuitedSlot path: Common/Inventory/InventoryBase.cs startLine: 320 @@ -1318,8 +1318,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSuitability path: Common/Inventory/InventoryBase.cs startLine: 371 @@ -1362,8 +1362,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanContain path: Common/Inventory/InventoryBase.cs startLine: 378 @@ -1395,8 +1395,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryFlipItems path: Common/Inventory/InventoryBase.cs startLine: 389 @@ -1438,8 +1438,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanPlayerAccess path: Common/Inventory/InventoryBase.cs startLine: 405 @@ -1475,8 +1475,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanPlayerModify path: Common/Inventory/InventoryBase.cs startLine: 415 @@ -1512,8 +1512,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnSearchTerm path: Common/Inventory/InventoryBase.cs startLine: 424 @@ -1547,8 +1547,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ActivateSlot path: Common/Inventory/InventoryBase.cs startLine: 433 @@ -1593,8 +1593,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnItemSlotModified path: Common/Inventory/InventoryBase.cs startLine: 462 @@ -1625,8 +1625,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DidModifyItemSlot path: Common/Inventory/InventoryBase.cs startLine: 473 @@ -1660,8 +1660,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PerformNotifySlot path: Common/Inventory/InventoryBase.cs startLine: 493 @@ -1695,8 +1695,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromTreeAttributes path: Common/Inventory/InventoryBase.cs startLine: 507 @@ -1727,8 +1727,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToTreeAttributes path: Common/Inventory/InventoryBase.cs startLine: 513 @@ -1758,8 +1758,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryFlipItemStack path: Common/Inventory/InventoryBase.cs startLine: 522 @@ -1804,8 +1804,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryMoveItemStack path: Common/Inventory/InventoryBase.cs startLine: 543 @@ -1850,8 +1850,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSlotsIfExists path: Common/Inventory/InventoryBase.cs startLine: 564 @@ -1894,8 +1894,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SlotsFromTreeAttributes path: Common/Inventory/InventoryBase.cs startLine: 593 @@ -1938,8 +1938,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SlotsToTreeAttributes path: Common/Inventory/InventoryBase.cs startLine: 638 @@ -1976,8 +1976,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GenEmptySlots path: Common/Inventory/InventoryBase.cs startLine: 659 @@ -2014,8 +2014,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NewSlot path: Common/Inventory/InventoryBase.cs startLine: 674 @@ -2052,8 +2052,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MarkSlotDirty path: Common/Inventory/InventoryBase.cs startLine: 684 @@ -2092,8 +2092,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DiscardAll path: Common/Inventory/InventoryBase.cs startLine: 693 @@ -2120,8 +2120,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DropSlotIfHot path: Common/Inventory/InventoryBase.cs startLine: 707 @@ -2151,8 +2151,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DropSlots path: Common/Inventory/InventoryBase.cs startLine: 733 @@ -2189,8 +2189,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DropAll path: Common/Inventory/InventoryBase.cs startLine: 752 @@ -2227,8 +2227,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clear path: Common/Inventory/InventoryBase.cs startLine: 780 @@ -2255,8 +2255,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnOwningEntityDeath path: Common/Inventory/InventoryBase.cs startLine: 787 @@ -2284,8 +2284,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetTransitionSpeedMul path: Common/Inventory/InventoryBase.cs startLine: 799 @@ -2322,8 +2322,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDefaultTransitionSpeedMul path: Common/Inventory/InventoryBase.cs startLine: 810 @@ -2353,8 +2353,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Open path: Common/Inventory/InventoryBase.cs startLine: 820 @@ -2390,8 +2390,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Close path: Common/Inventory/InventoryBase.cs startLine: 837 @@ -2427,8 +2427,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HasOpened path: Common/Inventory/InventoryBase.cs startLine: 854 @@ -2464,8 +2464,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetEnumerator path: Common/Inventory/InventoryBase.cs startLine: 862 @@ -2496,8 +2496,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAutoPushIntoSlot path: Common/Inventory/InventoryBase.cs startLine: 882 @@ -2534,8 +2534,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAutoPullFromSlot path: Common/Inventory/InventoryBase.cs startLine: 893 diff --git a/api/Vintagestory.API.Common.InventoryBasePlayer.yml b/api/Vintagestory.API.Common.InventoryBasePlayer.yml index 0720febd..8175f84e 100644 --- a/api/Vintagestory.API.Common.InventoryBasePlayer.yml +++ b/api/Vintagestory.API.Common.InventoryBasePlayer.yml @@ -24,8 +24,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBasePlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InventoryBasePlayer path: Common/Inventory/InventoryBasePlayer.cs startLine: 9 @@ -135,8 +135,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBasePlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveOnClose path: Common/Inventory/InventoryBasePlayer.cs startLine: 11 @@ -167,8 +167,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBasePlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: playerUID path: Common/Inventory/InventoryBasePlayer.cs startLine: 16 @@ -196,8 +196,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBasePlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Player path: Common/Inventory/InventoryBasePlayer.cs startLine: 21 @@ -227,8 +227,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBasePlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Inventory/InventoryBasePlayer.cs startLine: 24 @@ -263,8 +263,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBasePlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Inventory/InventoryBasePlayer.cs startLine: 29 @@ -297,8 +297,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBasePlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanPlayerAccess path: Common/Inventory/InventoryBasePlayer.cs startLine: 34 @@ -335,8 +335,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBasePlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HasOpened path: Common/Inventory/InventoryBasePlayer.cs startLine: 39 @@ -371,8 +371,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBasePlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DropAll path: Common/Inventory/InventoryBasePlayer.cs startLine: 44 @@ -410,8 +410,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBasePlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: spawnItemEntity path: Common/Inventory/InventoryBasePlayer.cs startLine: 82 diff --git a/api/Vintagestory.API.Common.InventoryDisplayed.yml b/api/Vintagestory.API.Common.InventoryDisplayed.yml index 2ed22242..8423b865 100644 --- a/api/Vintagestory.API.Common.InventoryDisplayed.yml +++ b/api/Vintagestory.API.Common.InventoryDisplayed.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryDisplayed.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InventoryDisplayed path: Common/Inventory/InventoryDisplayed.cs startLine: 6 @@ -140,8 +140,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryDisplayed.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Inventory/InventoryDisplayed.cs startLine: 10 @@ -180,8 +180,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryDisplayed.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnItemSlotModified path: Common/Inventory/InventoryDisplayed.cs startLine: 18 diff --git a/api/Vintagestory.API.Common.InventoryGeneric.yml b/api/Vintagestory.API.Common.InventoryGeneric.yml index d2de3c5d..c78503ed 100644 --- a/api/Vintagestory.API.Common.InventoryGeneric.yml +++ b/api/Vintagestory.API.Common.InventoryGeneric.yml @@ -34,8 +34,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InventoryGeneric path: Common/Inventory/InventoryGeneric.cs startLine: 20 @@ -143,8 +143,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: slots path: Common/Inventory/InventoryGeneric.cs startLine: 22 @@ -170,8 +170,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TransitionableSpeedMulByType path: Common/Inventory/InventoryGeneric.cs startLine: 24 @@ -199,8 +199,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PerishableFactorByFoodCategory path: Common/Inventory/InventoryGeneric.cs startLine: 25 @@ -228,8 +228,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnGetSuitability path: Common/Inventory/InventoryGeneric.cs startLine: 27 @@ -255,8 +255,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnGetAutoPushIntoSlot path: Common/Inventory/InventoryGeneric.cs startLine: 28 @@ -282,8 +282,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnGetAutoPullFromSlot path: Common/Inventory/InventoryGeneric.cs startLine: 29 @@ -309,8 +309,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BaseWeight path: Common/Inventory/InventoryGeneric.cs startLine: 31 @@ -338,8 +338,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Inventory/InventoryGeneric.cs startLine: 45 @@ -385,8 +385,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Inventory/InventoryGeneric.cs startLine: 61 @@ -429,8 +429,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Count path: Common/Inventory/InventoryGeneric.cs startLine: 73 @@ -461,8 +461,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Common/Inventory/InventoryGeneric.cs startLine: 83 @@ -500,8 +500,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSuitability path: Common/Inventory/InventoryGeneric.cs startLine: 98 @@ -545,8 +545,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromTreeAttributes path: Common/Inventory/InventoryGeneric.cs startLine: 107 @@ -578,8 +578,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddSlots path: Common/Inventory/InventoryGeneric.cs startLine: 116 @@ -610,8 +610,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToTreeAttributes path: Common/Inventory/InventoryGeneric.cs startLine: 128 @@ -643,8 +643,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NewSlot path: Common/Inventory/InventoryGeneric.cs startLine: 138 @@ -682,8 +682,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetTransitionSpeedMul path: Common/Inventory/InventoryGeneric.cs startLine: 145 @@ -721,8 +721,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAutoPullFromSlot path: Common/Inventory/InventoryGeneric.cs startLine: 174 @@ -757,8 +757,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAutoPushIntoSlot path: Common/Inventory/InventoryGeneric.cs startLine: 184 diff --git a/api/Vintagestory.API.Common.Item.yml b/api/Vintagestory.API.Common.Item.yml index 24a11994..ec8577f8 100644 --- a/api/Vintagestory.API.Common.Item.yml +++ b/api/Vintagestory.API.Common.Item.yml @@ -25,8 +25,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/Item.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Item path: Common/Collectible/Item/Item.cs startLine: 9 @@ -233,8 +233,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/Item.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Id path: Common/Collectible/Item/Item.cs startLine: 14 @@ -265,8 +265,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/Item.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ItemClass path: Common/Collectible/Item/Item.cs startLine: 19 @@ -297,8 +297,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/Item.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ItemId path: Common/Collectible/Item/Item.cs startLine: 24 @@ -326,8 +326,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/Item.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Shape path: Common/Collectible/Item/Item.cs startLine: 29 @@ -355,8 +355,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/Item.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Textures path: Common/Collectible/Item/Item.cs startLine: 34 @@ -384,8 +384,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/Item.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FirstTexture path: Common/Collectible/Item/Item.cs startLine: 39 @@ -415,8 +415,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/Item.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Collectible/Item/Item.cs startLine: 44 @@ -446,8 +446,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/Item.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Collectible/Item/Item.cs startLine: 57 @@ -481,8 +481,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/Item.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRandomColor path: Common/Collectible/Item/Item.cs startLine: 69 @@ -520,8 +520,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Item/Item.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Collectible/Item/Item.cs startLine: 81 diff --git a/api/Vintagestory.API.Common.ItemClassMethods.yml b/api/Vintagestory.API.Common.ItemClassMethods.yml index 56a7b802..e8edb864 100644 --- a/api/Vintagestory.API.Common.ItemClassMethods.yml +++ b/api/Vintagestory.API.Common.ItemClassMethods.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumItemClass.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ItemClassMethods path: Common/Collectible/EnumItemClass.cs startLine: 8 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/EnumItemClass.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Name path: Common/Collectible/EnumItemClass.cs startLine: 10 diff --git a/api/Vintagestory.API.Common.ItemSlot.yml b/api/Vintagestory.API.Common.ItemSlot.yml index ed586941..45e7ad92 100644 --- a/api/Vintagestory.API.Common.ItemSlot.yml +++ b/api/Vintagestory.API.Common.ItemSlot.yml @@ -47,8 +47,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ItemSlot path: Common/Inventory/ItemSlot.cs startLine: 9 @@ -92,8 +92,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MarkedDirty path: Common/Inventory/ItemSlot.cs startLine: 14 @@ -121,8 +121,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxSlotStackSize path: Common/Inventory/ItemSlot.cs startLine: 20 @@ -152,8 +152,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: itemstack path: Common/Inventory/ItemSlot.cs startLine: 22 @@ -179,8 +179,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: inventory path: Common/Inventory/ItemSlot.cs startLine: 23 @@ -206,8 +206,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Inventory path: Common/Inventory/ItemSlot.cs startLine: 28 @@ -237,8 +237,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BackgroundIcon path: Common/Inventory/ItemSlot.cs startLine: 34 @@ -266,8 +266,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DrawUnavailable path: Common/Inventory/ItemSlot.cs startLine: 36 @@ -295,8 +295,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HexBackgroundColor path: Common/Inventory/ItemSlot.cs startLine: 41 @@ -324,8 +324,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Itemstack path: Common/Inventory/ItemSlot.cs startLine: 46 @@ -355,8 +355,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StackSize path: Common/Inventory/ItemSlot.cs startLine: 55 @@ -386,8 +386,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Empty path: Common/Inventory/ItemSlot.cs startLine: 63 @@ -417,8 +417,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StorageType path: Common/Inventory/ItemSlot.cs startLine: 68 @@ -448,8 +448,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Inventory/ItemSlot.cs startLine: 74 @@ -483,8 +483,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRemainingSlotSpace path: Common/Inventory/ItemSlot.cs startLine: 82 @@ -516,8 +516,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanTakeFrom path: Common/Inventory/ItemSlot.cs startLine: 94 @@ -554,8 +554,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanHold path: Common/Inventory/ItemSlot.cs startLine: 111 @@ -589,8 +589,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanTake path: Common/Inventory/ItemSlot.cs startLine: 126 @@ -620,8 +620,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TakeOutWhole path: Common/Inventory/ItemSlot.cs startLine: 137 @@ -651,8 +651,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TakeOut path: Common/Inventory/ItemSlot.cs startLine: 152 @@ -689,8 +689,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryPutInto path: Common/Inventory/ItemSlot.cs startLine: 172 @@ -733,8 +733,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryPutInto path: Common/Inventory/ItemSlot.cs startLine: 184 @@ -774,8 +774,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryFlipWith path: Common/Inventory/ItemSlot.cs startLine: 236 @@ -809,8 +809,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FlipWith path: Common/Inventory/ItemSlot.cs startLine: 262 @@ -841,8 +841,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ActivateSlot path: Common/Inventory/ItemSlot.cs startLine: 281 @@ -879,8 +879,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ActivateSlotLeftClick path: Common/Inventory/ItemSlot.cs startLine: 317 @@ -917,8 +917,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ActivateSlotMiddleClick path: Common/Inventory/ItemSlot.cs startLine: 366 @@ -955,8 +955,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ActivateSlotRightClick path: Common/Inventory/ItemSlot.cs startLine: 384 @@ -993,8 +993,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnItemSlotModified path: Common/Inventory/ItemSlot.cs startLine: 419 @@ -1025,8 +1025,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MarkDirty path: Common/Inventory/ItemSlot.cs startLine: 436 @@ -1053,8 +1053,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetStackName path: Common/Inventory/ItemSlot.cs startLine: 461 @@ -1084,8 +1084,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetStackDescription path: Common/Inventory/ItemSlot.cs startLine: 472 @@ -1125,8 +1125,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Common/Inventory/ItemSlot.cs startLine: 478 diff --git a/api/Vintagestory.API.Common.ItemSlotBackpack.yml b/api/Vintagestory.API.Common.ItemSlotBackpack.yml index 576bef5c..38cedd7f 100644 --- a/api/Vintagestory.API.Common.ItemSlotBackpack.yml +++ b/api/Vintagestory.API.Common.ItemSlotBackpack.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotBackpack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ItemSlotBackpack path: Common/Inventory/ItemSlotBackpack.cs startLine: 5 @@ -84,8 +84,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotBackpack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StorageType path: Common/Inventory/ItemSlotBackpack.cs startLine: 7 @@ -116,8 +116,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotBackpack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxSlotStackSize path: Common/Inventory/ItemSlotBackpack.cs startLine: 9 @@ -148,8 +148,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotBackpack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Inventory/ItemSlotBackpack.cs startLine: 11 diff --git a/api/Vintagestory.API.Common.ItemSlotCharacter.yml b/api/Vintagestory.API.Common.ItemSlotCharacter.yml index c1b2bfad..cc1ae3ca 100644 --- a/api/Vintagestory.API.Common.ItemSlotCharacter.yml +++ b/api/Vintagestory.API.Common.ItemSlotCharacter.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotCharacter.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ItemSlotCharacter path: Common/Inventory/ItemSlotCharacter.cs startLine: 26 @@ -83,8 +83,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotCharacter.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StorageType path: Common/Inventory/ItemSlotCharacter.cs startLine: 28 @@ -115,8 +115,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotCharacter.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Inventory/ItemSlotCharacter.cs startLine: 32 @@ -149,8 +149,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotCharacter.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanTakeFrom path: Common/Inventory/ItemSlotCharacter.cs startLine: 37 @@ -188,8 +188,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotCharacter.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanHold path: Common/Inventory/ItemSlotCharacter.cs startLine: 43 @@ -223,8 +223,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotCharacter.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsDressType path: Common/Inventory/ItemSlotCharacter.cs startLine: 56 diff --git a/api/Vintagestory.API.Common.ItemSlotCreative.yml b/api/Vintagestory.API.Common.ItemSlotCreative.yml index 92a54f85..37006fe2 100644 --- a/api/Vintagestory.API.Common.ItemSlotCreative.yml +++ b/api/Vintagestory.API.Common.ItemSlotCreative.yml @@ -25,8 +25,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotCreative.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ItemSlotCreative path: Common/Inventory/ItemSlotCreative.cs startLine: 5 @@ -82,8 +82,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotCreative.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Inventory/ItemSlotCreative.cs startLine: 7 @@ -114,8 +114,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotCreative.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TakeOutWhole path: Common/Inventory/ItemSlotCreative.cs startLine: 11 @@ -146,8 +146,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotCreative.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TakeOut path: Common/Inventory/ItemSlotCreative.cs startLine: 17 @@ -185,8 +185,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotCreative.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryPutInto path: Common/Inventory/ItemSlotCreative.cs startLine: 25 @@ -227,8 +227,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotCreative.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ActivateSlotLeftClick path: Common/Inventory/ItemSlotCreative.cs startLine: 80 @@ -265,8 +265,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotCreative.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ActivateSlotMiddleClick path: Common/Inventory/ItemSlotCreative.cs startLine: 116 @@ -304,8 +304,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotCreative.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ActivateSlotRightClick path: Common/Inventory/ItemSlotCreative.cs startLine: 126 @@ -343,8 +343,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotCreative.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryFlipWith path: Common/Inventory/ItemSlotCreative.cs startLine: 147 @@ -379,8 +379,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotCreative.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FlipWith path: Common/Inventory/ItemSlotCreative.cs startLine: 165 @@ -411,8 +411,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotCreative.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnItemSlotModified path: Common/Inventory/ItemSlotCreative.cs startLine: 177 diff --git a/api/Vintagestory.API.Common.ItemSlotOffhand.yml b/api/Vintagestory.API.Common.ItemSlotOffhand.yml index 4de3305a..f8166586 100644 --- a/api/Vintagestory.API.Common.ItemSlotOffhand.yml +++ b/api/Vintagestory.API.Common.ItemSlotOffhand.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotOffHand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ItemSlotOffhand path: Common/Inventory/ItemSlotOffHand.cs startLine: 5 @@ -84,8 +84,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotOffHand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StorageType path: Common/Inventory/ItemSlotOffHand.cs startLine: 7 @@ -116,8 +116,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotOffHand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Inventory/ItemSlotOffHand.cs startLine: 9 diff --git a/api/Vintagestory.API.Common.ItemSlotOutput.yml b/api/Vintagestory.API.Common.ItemSlotOutput.yml index f7efa43f..c740fbbb 100644 --- a/api/Vintagestory.API.Common.ItemSlotOutput.yml +++ b/api/Vintagestory.API.Common.ItemSlotOutput.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotOutput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ItemSlotOutput path: Common/Inventory/ItemSlotOutput.cs startLine: 5 @@ -84,8 +84,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotOutput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Inventory/ItemSlotOutput.cs startLine: 7 @@ -116,8 +116,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotOutput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanHold path: Common/Inventory/ItemSlotOutput.cs startLine: 11 @@ -151,8 +151,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotOutput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanTake path: Common/Inventory/ItemSlotOutput.cs startLine: 16 @@ -183,8 +183,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotOutput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanTakeFrom path: Common/Inventory/ItemSlotOutput.cs startLine: 21 @@ -222,8 +222,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotOutput.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ActivateSlot path: Common/Inventory/ItemSlotOutput.cs startLine: 27 diff --git a/api/Vintagestory.API.Common.ItemSlotSurvival.yml b/api/Vintagestory.API.Common.ItemSlotSurvival.yml index c83ac56a..5343c8e7 100644 --- a/api/Vintagestory.API.Common.ItemSlotSurvival.yml +++ b/api/Vintagestory.API.Common.ItemSlotSurvival.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotSurvival.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ItemSlotSurvival path: Common/Inventory/ItemSlotSurvival.cs startLine: 5 @@ -84,8 +84,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotSurvival.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Inventory/ItemSlotSurvival.cs startLine: 7 @@ -116,8 +116,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotSurvival.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanTakeFrom path: Common/Inventory/ItemSlotSurvival.cs startLine: 13 @@ -155,8 +155,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotSurvival.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanHold path: Common/Inventory/ItemSlotSurvival.cs startLine: 19 diff --git a/api/Vintagestory.API.Common.ItemSlotUniversal.yml b/api/Vintagestory.API.Common.ItemSlotUniversal.yml index 853d8dce..5b992945 100644 --- a/api/Vintagestory.API.Common.ItemSlotUniversal.yml +++ b/api/Vintagestory.API.Common.ItemSlotUniversal.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotUniversal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ItemSlotUniversal path: Common/Inventory/ItemSlotUniversal.cs startLine: 5 @@ -84,8 +84,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotUniversal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Inventory/ItemSlotUniversal.cs startLine: 7 @@ -116,8 +116,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemSlotUniversal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StorageType path: Common/Inventory/ItemSlotUniversal.cs startLine: 11 diff --git a/api/Vintagestory.API.Common.ItemStack.yml b/api/Vintagestory.API.Common.ItemStack.yml index ab9405e8..bfb2bcaa 100644 --- a/api/Vintagestory.API.Common.ItemStack.yml +++ b/api/Vintagestory.API.Common.ItemStack.yml @@ -51,8 +51,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ItemStack path: Common/Collectible/ItemStack.cs startLine: 9 @@ -86,8 +86,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Class path: Common/Collectible/ItemStack.cs startLine: 14 @@ -115,8 +115,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Id path: Common/Collectible/ItemStack.cs startLine: 19 @@ -144,8 +144,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: stacksize path: Common/Collectible/ItemStack.cs startLine: 22 @@ -171,8 +171,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: item path: Common/Collectible/ItemStack.cs startLine: 27 @@ -198,8 +198,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: block path: Common/Collectible/ItemStack.cs startLine: 28 @@ -225,8 +225,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Collectible path: Common/Collectible/ItemStack.cs startLine: 33 @@ -258,8 +258,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Item path: Common/Collectible/ItemStack.cs startLine: 44 @@ -291,8 +291,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Block path: Common/Collectible/ItemStack.cs startLine: 52 @@ -324,8 +324,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StackSize path: Common/Collectible/ItemStack.cs startLine: 60 @@ -357,8 +357,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Attributes path: Common/Collectible/ItemStack.cs startLine: 80 @@ -390,8 +390,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TempAttributes path: Common/Collectible/ItemStack.cs startLine: 91 @@ -421,8 +421,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ItemAttributes path: Common/Collectible/ItemStack.cs startLine: 101 @@ -452,8 +452,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Collectible/ItemStack.cs startLine: 117 @@ -483,8 +483,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Collectible/ItemStack.cs startLine: 129 @@ -530,8 +530,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Collectible/ItemStack.cs startLine: 149 @@ -565,8 +565,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Collectible/ItemStack.cs startLine: 158 @@ -600,8 +600,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Collectible/ItemStack.cs startLine: 174 @@ -638,8 +638,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Collectible/ItemStack.cs startLine: 193 @@ -676,8 +676,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Collectible/ItemStack.cs startLine: 220 @@ -714,8 +714,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Collectible/ItemStack.cs startLine: 237 @@ -752,8 +752,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Common/Collectible/ItemStack.cs startLine: 257 @@ -798,8 +798,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Satisfies path: Common/Collectible/ItemStack.cs startLine: 272 @@ -833,8 +833,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetFrom path: Common/Collectible/ItemStack.cs startLine: 284 @@ -865,8 +865,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Common/Collectible/ItemStack.cs startLine: 300 @@ -897,8 +897,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Common/Collectible/ItemStack.cs startLine: 309 @@ -928,8 +928,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Common/Collectible/ItemStack.cs startLine: 326 @@ -962,8 +962,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Collectible/ItemStack.cs startLine: 338 @@ -996,8 +996,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ResolveBlockOrItem path: Common/Collectible/ItemStack.cs startLine: 351 @@ -1031,8 +1031,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MatchesSearchText path: Common/Collectible/ItemStack.cs startLine: 371 @@ -1074,8 +1074,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetName path: Common/Collectible/ItemStack.cs startLine: 384 @@ -1107,8 +1107,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDescription path: Common/Collectible/ItemStack.cs startLine: 396 @@ -1153,8 +1153,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Collectible/ItemStack.cs startLine: 408 @@ -1186,8 +1186,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetEmptyClone path: Common/Collectible/ItemStack.cs startLine: 420 @@ -1217,8 +1217,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FixMapping path: Common/Collectible/ItemStack.cs startLine: 439 @@ -1263,8 +1263,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHashCode path: Common/Collectible/ItemStack.cs startLine: 477 @@ -1295,8 +1295,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHashCode path: Common/Collectible/ItemStack.cs startLine: 482 diff --git a/api/Vintagestory.API.Common.ItemStackMergeOperation.yml b/api/Vintagestory.API.Common.ItemStackMergeOperation.yml index 9d1ac704..e8057ce6 100644 --- a/api/Vintagestory.API.Common.ItemStackMergeOperation.yml +++ b/api/Vintagestory.API.Common.ItemStackMergeOperation.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemStackMergeOperation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ItemStackMergeOperation path: Common/Inventory/ItemStackMergeOperation.cs startLine: 124 @@ -70,8 +70,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemStackMergeOperation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SinkSlot path: Common/Inventory/ItemStackMergeOperation.cs startLine: 129 @@ -99,8 +99,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemStackMergeOperation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SourceSlot path: Common/Inventory/ItemStackMergeOperation.cs startLine: 134 @@ -128,8 +128,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemStackMergeOperation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Inventory/ItemStackMergeOperation.cs startLine: 136 diff --git a/api/Vintagestory.API.Common.ItemStackMoveOperation.yml b/api/Vintagestory.API.Common.ItemStackMoveOperation.yml index 2fa3ee11..5e963106 100644 --- a/api/Vintagestory.API.Common.ItemStackMoveOperation.yml +++ b/api/Vintagestory.API.Common.ItemStackMoveOperation.yml @@ -32,8 +32,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemStackMergeOperation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ItemStackMoveOperation path: Common/Inventory/ItemStackMergeOperation.cs startLine: 20 @@ -69,8 +69,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemStackMergeOperation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: World path: Common/Inventory/ItemStackMergeOperation.cs startLine: 25 @@ -98,8 +98,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemStackMergeOperation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ActingPlayer path: Common/Inventory/ItemStackMergeOperation.cs startLine: 30 @@ -127,8 +127,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemStackMergeOperation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MouseButton path: Common/Inventory/ItemStackMergeOperation.cs startLine: 35 @@ -156,8 +156,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemStackMergeOperation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Modifiers path: Common/Inventory/ItemStackMergeOperation.cs startLine: 40 @@ -185,8 +185,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemStackMergeOperation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentPriority path: Common/Inventory/ItemStackMergeOperation.cs startLine: 45 @@ -214,8 +214,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemStackMergeOperation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RequiredPriority path: Common/Inventory/ItemStackMergeOperation.cs startLine: 50 @@ -243,8 +243,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemStackMergeOperation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ConfirmationMessageCode path: Common/Inventory/ItemStackMergeOperation.cs startLine: 55 @@ -272,8 +272,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemStackMergeOperation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RequestedQuantity path: Common/Inventory/ItemStackMergeOperation.cs startLine: 60 @@ -301,8 +301,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemStackMergeOperation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MovableQuantity path: Common/Inventory/ItemStackMergeOperation.cs startLine: 65 @@ -330,8 +330,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemStackMergeOperation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MovedQuantity path: Common/Inventory/ItemStackMergeOperation.cs startLine: 70 @@ -359,8 +359,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemStackMergeOperation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NotMovedQuantity path: Common/Inventory/ItemStackMergeOperation.cs startLine: 75 @@ -390,8 +390,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemStackMergeOperation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShiftDown path: Common/Inventory/ItemStackMergeOperation.cs startLine: 83 @@ -421,8 +421,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemStackMergeOperation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CtrlDown path: Common/Inventory/ItemStackMergeOperation.cs startLine: 88 @@ -452,8 +452,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemStackMergeOperation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AltDown path: Common/Inventory/ItemStackMergeOperation.cs startLine: 93 @@ -483,8 +483,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemStackMergeOperation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WheelDir path: Common/Inventory/ItemStackMergeOperation.cs startLine: 95 @@ -510,8 +510,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemStackMergeOperation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Inventory/ItemStackMergeOperation.cs startLine: 98 @@ -550,8 +550,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/ItemStackMergeOperation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToMergeOperation path: Common/Inventory/ItemStackMergeOperation.cs startLine: 112 diff --git a/api/Vintagestory.API.Common.JsonAttributesConverter.yml b/api/Vintagestory.API.Common.JsonAttributesConverter.yml index 34a7019e..9248060a 100644 --- a/api/Vintagestory.API.Common.JsonAttributesConverter.yml +++ b/api/Vintagestory.API.Common.JsonAttributesConverter.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/Registry/JsonConverters.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: JsonAttributesConverter path: Common/Registry/JsonConverters.cs startLine: 32 @@ -58,8 +58,8 @@ items: source: remote: path: VintagestoryApi/Common/Registry/JsonConverters.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanConvert path: Common/Registry/JsonConverters.cs startLine: 34 @@ -91,8 +91,8 @@ items: source: remote: path: VintagestoryApi/Common/Registry/JsonConverters.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReadJson path: Common/Registry/JsonConverters.cs startLine: 39 @@ -133,8 +133,8 @@ items: source: remote: path: VintagestoryApi/Common/Registry/JsonConverters.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WriteJson path: Common/Registry/JsonConverters.cs startLine: 49 diff --git a/api/Vintagestory.API.Common.JsonItemStack.yml b/api/Vintagestory.API.Common.JsonItemStack.yml index 97235f16..f369c386 100644 --- a/api/Vintagestory.API.Common.JsonItemStack.yml +++ b/api/Vintagestory.API.Common.JsonItemStack.yml @@ -29,8 +29,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/JsonItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: JsonItemStack path: Common/Collectible/JsonItemStack.cs startLine: 8 @@ -76,8 +76,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/JsonItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Type path: Common/Collectible/JsonItemStack.cs startLine: 15 @@ -117,8 +117,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/JsonItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Common/Collectible/JsonItemStack.cs startLine: 20 @@ -158,8 +158,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/JsonItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StackSize path: Common/Collectible/JsonItemStack.cs startLine: 25 @@ -199,8 +199,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/JsonItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Quantity path: Common/Collectible/JsonItemStack.cs startLine: 29 @@ -230,8 +230,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/JsonItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Attributes path: Common/Collectible/JsonItemStack.cs startLine: 40 @@ -287,8 +287,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/JsonItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ResolvedItemstack path: Common/Collectible/JsonItemStack.cs startLine: 45 @@ -316,8 +316,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/JsonItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromString path: Common/Collectible/JsonItemStack.cs startLine: 48 @@ -350,8 +350,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/JsonItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Resolve path: Common/Collectible/JsonItemStack.cs startLine: 60 @@ -396,8 +396,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/JsonItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Resolve path: Common/Collectible/JsonItemStack.cs startLine: 103 @@ -434,8 +434,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/JsonItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Matches path: Common/Collectible/JsonItemStack.cs startLine: 147 @@ -467,8 +467,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/JsonItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Collectible/JsonItemStack.cs startLine: 157 @@ -498,8 +498,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/JsonItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Collectible/JsonItemStack.cs startLine: 177 @@ -533,8 +533,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/JsonItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Common/Collectible/JsonItemStack.cs startLine: 194 @@ -565,8 +565,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/JsonItemStack.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FillPlaceHolder path: Common/Collectible/JsonItemStack.cs startLine: 206 diff --git a/api/Vintagestory.API.Common.JsonUtil.yml b/api/Vintagestory.API.Common.JsonUtil.yml index ba4956a2..3db62e2b 100644 --- a/api/Vintagestory.API.Common.JsonUtil.yml +++ b/api/Vintagestory.API.Common.JsonUtil.yml @@ -26,8 +26,8 @@ items: source: remote: path: VintagestoryApi/Util/JsonUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: JsonUtil path: Util/JsonUtil.cs startLine: 9 @@ -62,8 +62,8 @@ items: source: remote: path: VintagestoryApi/Util/JsonUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Populate path: Util/JsonUtil.cs startLine: 11 @@ -98,8 +98,8 @@ items: source: remote: path: VintagestoryApi/Util/JsonUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Util/JsonUtil.cs startLine: 25 @@ -139,8 +139,8 @@ items: source: remote: path: VintagestoryApi/Util/JsonUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromString path: Util/JsonUtil.cs startLine: 36 @@ -175,8 +175,8 @@ items: source: remote: path: VintagestoryApi/Util/JsonUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Util/JsonUtil.cs startLine: 47 @@ -216,8 +216,8 @@ items: source: remote: path: VintagestoryApi/Util/JsonUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Util/JsonUtil.cs startLine: 52 @@ -252,8 +252,8 @@ items: source: remote: path: VintagestoryApi/Util/JsonUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToPrettyString path: Util/JsonUtil.cs startLine: 57 @@ -288,8 +288,8 @@ items: source: remote: path: VintagestoryApi/Util/JsonUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PopulateObject path: Util/JsonUtil.cs startLine: 63 @@ -326,8 +326,8 @@ items: source: remote: path: VintagestoryApi/Util/JsonUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateSerializerForDomain path: Util/JsonUtil.cs startLine: 76 @@ -362,8 +362,8 @@ items: source: remote: path: VintagestoryApi/Util/JsonUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PopulateObject path: Util/JsonUtil.cs startLine: 89 @@ -398,8 +398,8 @@ items: source: remote: path: VintagestoryApi/Util/JsonUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToObject path: Util/JsonUtil.cs startLine: 105 @@ -446,8 +446,8 @@ items: source: remote: path: VintagestoryApi/Util/JsonUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToObject path: Util/JsonUtil.cs startLine: 127 diff --git a/api/Vintagestory.API.Common.LandClaim.yml b/api/Vintagestory.API.Common.LandClaim.yml index bba82b76..f3c811b5 100644 --- a/api/Vintagestory.API.Common.LandClaim.yml +++ b/api/Vintagestory.API.Common.LandClaim.yml @@ -39,8 +39,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LandClaim path: Common/LandClaim.cs startLine: 33 @@ -84,8 +84,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Areas path: Common/LandClaim.cs startLine: 37 @@ -123,8 +123,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ProtectionLevel path: Common/LandClaim.cs startLine: 39 @@ -162,8 +162,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OwnedByEntityId path: Common/LandClaim.cs startLine: 41 @@ -201,8 +201,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OwnedByPlayerUid path: Common/LandClaim.cs startLine: 43 @@ -240,8 +240,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OwnedByPlayerGroupUid path: Common/LandClaim.cs startLine: 45 @@ -279,8 +279,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LastKnownOwnerName path: Common/LandClaim.cs startLine: 47 @@ -318,8 +318,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Description path: Common/LandClaim.cs startLine: 49 @@ -357,8 +357,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PermittedPlayerGroupIds path: Common/LandClaim.cs startLine: 54 @@ -398,8 +398,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PermittedPlayerUids path: Common/LandClaim.cs startLine: 59 @@ -439,8 +439,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PermittedPlayerLastKnownPlayerName path: Common/LandClaim.cs startLine: 64 @@ -480,8 +480,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AllowUseEveryone path: Common/LandClaim.cs startLine: 66 @@ -519,8 +519,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Center path: Common/LandClaim.cs startLine: 68 @@ -548,8 +548,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SizeXZ path: Common/LandClaim.cs startLine: 100 @@ -577,8 +577,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SizeXYZ path: Common/LandClaim.cs startLine: 115 @@ -606,8 +606,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateClaim path: Common/LandClaim.cs startLine: 130 @@ -642,8 +642,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateClaim path: Common/LandClaim.cs startLine: 140 @@ -678,8 +678,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateClaim path: Common/LandClaim.cs startLine: 153 @@ -714,8 +714,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TestPlayerAccess path: Common/LandClaim.cs startLine: 162 @@ -747,8 +747,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PositionInside path: Common/LandClaim.cs startLine: 199 @@ -778,8 +778,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PositionInside path: Common/LandClaim.cs startLine: 209 @@ -809,8 +809,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddArea path: Common/LandClaim.cs startLine: 219 @@ -840,8 +840,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Intersects path: Common/LandClaim.cs startLine: 250 @@ -871,8 +871,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Intersects2d path: Common/LandClaim.cs startLine: 267 @@ -906,8 +906,8 @@ items: source: remote: path: VintagestoryApi/Common/LandClaim.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/LandClaim.cs startLine: 280 diff --git a/api/Vintagestory.API.Common.LayeredVoxelRecipe-1.yml b/api/Vintagestory.API.Common.LayeredVoxelRecipe-1.yml index de7fa5af..57b38618 100644 --- a/api/Vintagestory.API.Common.LayeredVoxelRecipe-1.yml +++ b/api/Vintagestory.API.Common.LayeredVoxelRecipe-1.yml @@ -27,8 +27,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/LayeredVoxelRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LayeredVoxelRecipe path: Common/Crafting/LayeredVoxelRecipe.cs startLine: 9 @@ -77,8 +77,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/LayeredVoxelRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pattern path: Common/Crafting/LayeredVoxelRecipe.cs startLine: 11 @@ -106,8 +106,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/LayeredVoxelRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Voxels path: Common/Crafting/LayeredVoxelRecipe.cs startLine: 12 @@ -135,8 +135,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/LayeredVoxelRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: QuantityLayers path: Common/Crafting/LayeredVoxelRecipe.cs startLine: 14 @@ -166,8 +166,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/LayeredVoxelRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RecipeCategoryCode path: Common/Crafting/LayeredVoxelRecipe.cs startLine: 15 @@ -197,8 +197,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/LayeredVoxelRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotateRecipe path: Common/Crafting/LayeredVoxelRecipe.cs startLine: 17 @@ -228,8 +228,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/LayeredVoxelRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Crafting/LayeredVoxelRecipe.cs startLine: 19 @@ -257,8 +257,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/LayeredVoxelRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Resolve path: Common/Crafting/LayeredVoxelRecipe.cs startLine: 30 @@ -299,8 +299,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/LayeredVoxelRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GenVoxels path: Common/Crafting/LayeredVoxelRecipe.cs startLine: 56 @@ -329,8 +329,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/LayeredVoxelRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Common/Crafting/LayeredVoxelRecipe.cs startLine: 113 @@ -363,8 +363,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/LayeredVoxelRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Crafting/LayeredVoxelRecipe.cs startLine: 136 @@ -400,8 +400,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/LayeredVoxelRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetNameToCodeMapping path: Common/Crafting/LayeredVoxelRecipe.cs startLine: 165 @@ -438,8 +438,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/LayeredVoxelRecipe.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WildCardMatch path: Common/Crafting/LayeredVoxelRecipe.cs startLine: 223 diff --git a/api/Vintagestory.API.Common.LogEntryDelegate.yml b/api/Vintagestory.API.Common.LogEntryDelegate.yml index c9327feb..ecfde344 100644 --- a/api/Vintagestory.API.Common.LogEntryDelegate.yml +++ b/api/Vintagestory.API.Common.LogEntryDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LogEntryDelegate path: Common/API/Delegates.cs startLine: 148 diff --git a/api/Vintagestory.API.Common.LoggerBase.yml b/api/Vintagestory.API.Common.LoggerBase.yml index 376867f2..8237a17f 100644 --- a/api/Vintagestory.API.Common.LoggerBase.yml +++ b/api/Vintagestory.API.Common.LoggerBase.yml @@ -51,8 +51,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoggerBase path: Common/API/ILogger.cs startLine: 153 @@ -93,8 +93,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TraceLog path: Common/API/ILogger.cs startLine: 158 @@ -126,8 +126,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SourcePath path: Common/API/ILogger.cs startLine: 160 @@ -153,8 +153,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntryAdded path: Common/API/ILogger.cs startLine: 176 @@ -184,8 +184,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClearWatchers path: Common/API/ILogger.cs startLine: 177 @@ -217,8 +217,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LogImpl path: Common/API/ILogger.cs startLine: 183 @@ -258,8 +258,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Log path: Common/API/ILogger.cs startLine: 185 @@ -298,8 +298,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Log path: Common/API/ILogger.cs startLine: 190 @@ -336,8 +336,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Chat path: Common/API/ILogger.cs startLine: 193 @@ -374,8 +374,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Chat path: Common/API/ILogger.cs startLine: 195 @@ -410,8 +410,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Event path: Common/API/ILogger.cs startLine: 198 @@ -448,8 +448,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Event path: Common/API/ILogger.cs startLine: 200 @@ -484,8 +484,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StoryEvent path: Common/API/ILogger.cs startLine: 203 @@ -522,8 +522,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StoryEvent path: Common/API/ILogger.cs startLine: 205 @@ -558,8 +558,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Build path: Common/API/ILogger.cs startLine: 208 @@ -596,8 +596,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Build path: Common/API/ILogger.cs startLine: 210 @@ -632,8 +632,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VerboseDebug path: Common/API/ILogger.cs startLine: 213 @@ -670,8 +670,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VerboseDebug path: Common/API/ILogger.cs startLine: 215 @@ -706,8 +706,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Debug path: Common/API/ILogger.cs startLine: 218 @@ -744,8 +744,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Debug path: Common/API/ILogger.cs startLine: 220 @@ -780,8 +780,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Notification path: Common/API/ILogger.cs startLine: 223 @@ -818,8 +818,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Notification path: Common/API/ILogger.cs startLine: 225 @@ -854,8 +854,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Warning path: Common/API/ILogger.cs startLine: 228 @@ -892,8 +892,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Warning path: Common/API/ILogger.cs startLine: 230 @@ -928,8 +928,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Warning path: Common/API/ILogger.cs startLine: 232 @@ -961,8 +961,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Error path: Common/API/ILogger.cs startLine: 235 @@ -999,8 +999,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Error path: Common/API/ILogger.cs startLine: 237 @@ -1035,8 +1035,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Error path: Common/API/ILogger.cs startLine: 239 @@ -1068,8 +1068,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CleanStackTrace path: Common/API/ILogger.cs startLine: 247 @@ -1106,8 +1106,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Fatal path: Common/API/ILogger.cs startLine: 252 @@ -1144,8 +1144,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Fatal path: Common/API/ILogger.cs startLine: 254 @@ -1180,8 +1180,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Fatal path: Common/API/ILogger.cs startLine: 256 @@ -1213,8 +1213,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Audit path: Common/API/ILogger.cs startLine: 259 @@ -1251,8 +1251,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Audit path: Common/API/ILogger.cs startLine: 261 @@ -1287,8 +1287,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Worldgen path: Common/API/ILogger.cs startLine: 264 @@ -1321,8 +1321,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Worldgen path: Common/API/ILogger.cs startLine: 266 @@ -1350,8 +1350,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ILogger.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Worldgen path: Common/API/ILogger.cs startLine: 268 diff --git a/api/Vintagestory.API.Common.LongArgParser.yml b/api/Vintagestory.API.Common.LongArgParser.yml index 9daa2db3..4aa2a5ab 100644 --- a/api/Vintagestory.API.Common.LongArgParser.yml +++ b/api/Vintagestory.API.Common.LongArgParser.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LongArgParser path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1682 @@ -74,8 +74,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1688 @@ -114,8 +114,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSyntaxExplanation path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1694 @@ -150,8 +150,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1699 @@ -186,8 +186,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValidRange path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1706 @@ -219,8 +219,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1711 @@ -249,8 +249,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1716 @@ -280,8 +280,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1723 @@ -322,8 +322,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1741 diff --git a/api/Vintagestory.API.Common.MapChunkGeneratorDelegate.yml b/api/Vintagestory.API.Common.MapChunkGeneratorDelegate.yml index effab094..7b5742f2 100644 --- a/api/Vintagestory.API.Common.MapChunkGeneratorDelegate.yml +++ b/api/Vintagestory.API.Common.MapChunkGeneratorDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MapChunkGeneratorDelegate path: Common/API/Delegates.cs startLine: 128 diff --git a/api/Vintagestory.API.Common.MapRegionGeneratorDelegate.yml b/api/Vintagestory.API.Common.MapRegionGeneratorDelegate.yml index 2e22e2a0..6dae9170 100644 --- a/api/Vintagestory.API.Common.MapRegionGeneratorDelegate.yml +++ b/api/Vintagestory.API.Common.MapRegionGeneratorDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MapRegionGeneratorDelegate path: Common/API/Delegates.cs startLine: 130 diff --git a/api/Vintagestory.API.Common.MapRegionLoadedDelegate.yml b/api/Vintagestory.API.Common.MapRegionLoadedDelegate.yml index d41559df..e4e79d25 100644 --- a/api/Vintagestory.API.Common.MapRegionLoadedDelegate.yml +++ b/api/Vintagestory.API.Common.MapRegionLoadedDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MapRegionLoadedDelegate path: Common/API/IEventAPI.cs startLine: 59 diff --git a/api/Vintagestory.API.Common.MapRegionUnloadDelegate.yml b/api/Vintagestory.API.Common.MapRegionUnloadDelegate.yml index f830f4a2..5109b7b1 100644 --- a/api/Vintagestory.API.Common.MapRegionUnloadDelegate.yml +++ b/api/Vintagestory.API.Common.MapRegionUnloadDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MapRegionUnloadDelegate path: Common/API/IEventAPI.cs startLine: 66 diff --git a/api/Vintagestory.API.Common.MatchGridRecipeDelegate.yml b/api/Vintagestory.API.Common.MatchGridRecipeDelegate.yml index b69ef25c..5882eaf2 100644 --- a/api/Vintagestory.API.Common.MatchGridRecipeDelegate.yml +++ b/api/Vintagestory.API.Common.MatchGridRecipeDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MatchGridRecipeDelegate path: Common/API/IEventAPI.cs startLine: 70 diff --git a/api/Vintagestory.API.Common.MetalProperty.yml b/api/Vintagestory.API.Common.MetalProperty.yml index 418c1fee..f22c7b47 100644 --- a/api/Vintagestory.API.Common.MetalProperty.yml +++ b/api/Vintagestory.API.Common.MetalProperty.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Common/Worldproperty/MetalProperty.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MetalProperty path: Common/Worldproperty/MetalProperty.cs startLine: 2 @@ -59,8 +59,8 @@ items: source: remote: path: VintagestoryApi/Common/Worldproperty/MetalProperty.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MeltPoint path: Common/Worldproperty/MetalProperty.cs startLine: 4 @@ -86,8 +86,8 @@ items: source: remote: path: VintagestoryApi/Common/Worldproperty/MetalProperty.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BoilPoint path: Common/Worldproperty/MetalProperty.cs startLine: 5 @@ -113,8 +113,8 @@ items: source: remote: path: VintagestoryApi/Common/Worldproperty/MetalProperty.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Density path: Common/Worldproperty/MetalProperty.cs startLine: 6 @@ -140,8 +140,8 @@ items: source: remote: path: VintagestoryApi/Common/Worldproperty/MetalProperty.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SpecificHeatCapacity path: Common/Worldproperty/MetalProperty.cs startLine: 7 @@ -167,8 +167,8 @@ items: source: remote: path: VintagestoryApi/Common/Worldproperty/MetalProperty.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Elemental path: Common/Worldproperty/MetalProperty.cs startLine: 8 @@ -194,8 +194,8 @@ items: source: remote: path: VintagestoryApi/Common/Worldproperty/MetalProperty.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Tier path: Common/Worldproperty/MetalProperty.cs startLine: 9 diff --git a/api/Vintagestory.API.Common.MetalPropertyVariant.yml b/api/Vintagestory.API.Common.MetalPropertyVariant.yml index ede2236f..200a7e4f 100644 --- a/api/Vintagestory.API.Common.MetalPropertyVariant.yml +++ b/api/Vintagestory.API.Common.MetalPropertyVariant.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Common/Worldproperty/MetalPropertyVariant.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MetalPropertyVariant path: Common/Worldproperty/MetalPropertyVariant.cs startLine: 4 @@ -65,8 +65,8 @@ items: source: remote: path: VintagestoryApi/Common/Worldproperty/MetalPropertyVariant.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Tier path: Common/Worldproperty/MetalPropertyVariant.cs startLine: 8 diff --git a/api/Vintagestory.API.Common.Mod.yml b/api/Vintagestory.API.Common.Mod.yml index 4e471982..93ff902f 100644 --- a/api/Vintagestory.API.Common.Mod.yml +++ b/api/Vintagestory.API.Common.Mod.yml @@ -24,8 +24,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/Mod.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mod path: Common/Assets/Mod.cs startLine: 8 @@ -63,8 +63,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/Mod.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SourceType path: Common/Assets/Mod.cs startLine: 11 @@ -94,8 +94,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/Mod.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SourcePath path: Common/Assets/Mod.cs startLine: 14 @@ -125,8 +125,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/Mod.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FileName path: Common/Assets/Mod.cs startLine: 17 @@ -156,8 +156,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/Mod.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Info path: Common/Assets/Mod.cs startLine: 25 @@ -194,8 +194,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/Mod.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WorldConfig path: Common/Assets/Mod.cs startLine: 27 @@ -223,8 +223,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/Mod.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Icon path: Common/Assets/Mod.cs startLine: 33 @@ -257,8 +257,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/Mod.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Logger path: Common/Assets/Mod.cs startLine: 36 @@ -288,8 +288,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/Mod.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Systems path: Common/Assets/Mod.cs startLine: 39 @@ -319,8 +319,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/Mod.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Common/Assets/Mod.cs startLine: 43 diff --git a/api/Vintagestory.API.Common.ModDependency.yml b/api/Vintagestory.API.Common.ModDependency.yml index 7073fef9..e2d0bea6 100644 --- a/api/Vintagestory.API.Common.ModDependency.yml +++ b/api/Vintagestory.API.Common.ModDependency.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModDependency.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ModDependency path: Common/API/ModDependency.cs startLine: 7 @@ -55,8 +55,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModDependency.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ModID path: Common/API/ModDependency.cs startLine: 10 @@ -86,8 +86,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModDependency.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Version path: Common/API/ModDependency.cs startLine: 16 @@ -120,8 +120,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModDependency.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ModDependency.cs startLine: 23 @@ -158,8 +158,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModDependency.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Common/API/ModDependency.cs startLine: 36 diff --git a/api/Vintagestory.API.Common.ModDependencyAttribute.yml b/api/Vintagestory.API.Common.ModDependencyAttribute.yml index a67cc831..fae7b219 100644 --- a/api/Vintagestory.API.Common.ModDependencyAttribute.yml +++ b/api/Vintagestory.API.Common.ModDependencyAttribute.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModDependency.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ModDependencyAttribute path: Common/API/ModDependency.cs startLine: 47 @@ -109,8 +109,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModDependency.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ModID path: Common/API/ModDependency.cs startLine: 51 @@ -140,8 +140,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModDependency.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Version path: Common/API/ModDependency.cs startLine: 57 @@ -174,8 +174,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModDependency.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ModDependency.cs startLine: 59 diff --git a/api/Vintagestory.API.Common.ModInfo.yml b/api/Vintagestory.API.Common.ModInfo.yml index 1bca1f0b..42d62e1a 100644 --- a/api/Vintagestory.API.Common.ModInfo.yml +++ b/api/Vintagestory.API.Common.ModInfo.yml @@ -36,8 +36,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ModInfo path: Common/API/ModInfo.cs startLine: 41 @@ -80,8 +80,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Type path: Common/API/ModInfo.cs startLine: 48 @@ -119,8 +119,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TextureSize path: Common/API/ModInfo.cs startLine: 54 @@ -158,8 +158,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Name path: Common/API/ModInfo.cs startLine: 58 @@ -197,8 +197,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ModID path: Common/API/ModInfo.cs startLine: 65 @@ -243,8 +243,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Version path: Common/API/ModInfo.cs startLine: 70 @@ -282,8 +282,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NetworkVersion path: Common/API/ModInfo.cs startLine: 76 @@ -321,8 +321,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Description path: Common/API/ModInfo.cs startLine: 80 @@ -360,8 +360,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Website path: Common/API/ModInfo.cs startLine: 84 @@ -399,8 +399,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Authors path: Common/API/ModInfo.cs startLine: 87 @@ -440,8 +440,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Contributors path: Common/API/ModInfo.cs startLine: 97 @@ -481,8 +481,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Side path: Common/API/ModInfo.cs startLine: 106 @@ -534,8 +534,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RequiredOnClient path: Common/API/ModInfo.cs startLine: 113 @@ -578,8 +578,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RequiredOnServer path: Common/API/ModInfo.cs startLine: 120 @@ -622,8 +622,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dependencies path: Common/API/ModInfo.cs startLine: 124 @@ -667,8 +667,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CoreMod path: Common/API/ModInfo.cs startLine: 129 @@ -696,8 +696,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ModInfo.cs startLine: 132 @@ -725,8 +725,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ModInfo.cs startLine: 134 @@ -779,8 +779,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Init path: Common/API/ModInfo.cs startLine: 168 @@ -805,8 +805,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToModID path: Common/API/ModInfo.cs startLine: 180 @@ -844,8 +844,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsValidModID path: Common/API/ModInfo.cs startLine: 209 @@ -886,8 +886,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfo.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CompareTo path: Common/API/ModInfo.cs startLine: 223 diff --git a/api/Vintagestory.API.Common.ModInfoAttribute.yml b/api/Vintagestory.API.Common.ModInfoAttribute.yml index 3d3c6301..08ad3683 100644 --- a/api/Vintagestory.API.Common.ModInfoAttribute.yml +++ b/api/Vintagestory.API.Common.ModInfoAttribute.yml @@ -31,8 +31,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfoAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ModInfoAttribute path: Common/API/ModInfoAttribute.cs startLine: 8 @@ -118,8 +118,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfoAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Name path: Common/API/ModInfoAttribute.cs startLine: 15 @@ -149,8 +149,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfoAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IconPath path: Common/API/ModInfoAttribute.cs startLine: 17 @@ -178,8 +178,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfoAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ModID path: Common/API/ModInfoAttribute.cs startLine: 20 @@ -209,8 +209,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfoAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Version path: Common/API/ModInfoAttribute.cs startLine: 23 @@ -240,8 +240,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfoAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CoreMod path: Common/API/ModInfoAttribute.cs startLine: 26 @@ -271,8 +271,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfoAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NetworkVersion path: Common/API/ModInfoAttribute.cs startLine: 31 @@ -302,8 +302,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfoAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Description path: Common/API/ModInfoAttribute.cs startLine: 34 @@ -333,8 +333,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfoAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Website path: Common/API/ModInfoAttribute.cs startLine: 38 @@ -364,8 +364,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfoAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Authors path: Common/API/ModInfoAttribute.cs startLine: 41 @@ -395,8 +395,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfoAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Contributors path: Common/API/ModInfoAttribute.cs startLine: 44 @@ -426,8 +426,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfoAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Side path: Common/API/ModInfoAttribute.cs startLine: 50 @@ -460,8 +460,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfoAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RequiredOnClient path: Common/API/ModInfoAttribute.cs startLine: 56 @@ -494,8 +494,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfoAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RequiredOnServer path: Common/API/ModInfoAttribute.cs startLine: 62 @@ -528,8 +528,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfoAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WorldConfig path: Common/API/ModInfoAttribute.cs startLine: 64 @@ -557,8 +557,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfoAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ModInfoAttribute.cs startLine: 66 @@ -591,8 +591,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModInfoAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ModInfoAttribute.cs startLine: 78 diff --git a/api/Vintagestory.API.Common.ModSystem.yml b/api/Vintagestory.API.Common.ModSystem.yml index 2e3268a4..d251d532 100644 --- a/api/Vintagestory.API.Common.ModSystem.yml +++ b/api/Vintagestory.API.Common.ModSystem.yml @@ -25,8 +25,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModSystem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ModSystem path: Common/API/ModSystem.cs startLine: 11 @@ -69,8 +69,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModSystem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mod path: Common/API/ModSystem.cs startLine: 16 @@ -100,8 +100,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModSystem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldLoad path: Common/API/ModSystem.cs startLine: 21 @@ -133,8 +133,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModSystem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExecuteOrder path: Common/API/ModSystem.cs startLine: 43 @@ -191,8 +191,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModSystem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartPre path: Common/API/ModSystem.cs startLine: 52 @@ -223,8 +223,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModSystem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Start path: Common/API/ModSystem.cs startLine: 64 @@ -262,8 +262,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModSystem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AssetsLoaded path: Common/API/ModSystem.cs startLine: 76 @@ -299,8 +299,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModSystem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AssetsFinalize path: Common/API/ModSystem.cs startLine: 85 @@ -331,8 +331,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModSystem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartClientSide path: Common/API/ModSystem.cs startLine: 97 @@ -368,8 +368,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModSystem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartServerSide path: Common/API/ModSystem.cs startLine: 108 @@ -405,8 +405,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ModSystem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Common/API/ModSystem.cs startLine: 116 diff --git a/api/Vintagestory.API.Common.ModWorldConfiguration.yml b/api/Vintagestory.API.Common.ModWorldConfiguration.yml index 8cdbf009..e0558c85 100644 --- a/api/Vintagestory.API.Common.ModWorldConfiguration.yml +++ b/api/Vintagestory.API.Common.ModWorldConfiguration.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/WorldConfiguration.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ModWorldConfiguration path: Common/Playstyle/WorldConfiguration.cs startLine: 6 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/WorldConfiguration.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayStyles path: Common/Playstyle/WorldConfiguration.cs startLine: 8 @@ -79,8 +79,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/WorldConfiguration.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WorldConfigAttributes path: Common/Playstyle/WorldConfiguration.cs startLine: 9 diff --git a/api/Vintagestory.API.Common.ModelTransform.yml b/api/Vintagestory.API.Common.ModelTransform.yml index 02d5576a..4f2711f1 100644 --- a/api/Vintagestory.API.Common.ModelTransform.yml +++ b/api/Vintagestory.API.Common.ModelTransform.yml @@ -29,8 +29,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ModelTransform.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ModelTransform path: Common/Collectible/ModelTransform.cs startLine: 86 @@ -75,8 +75,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ModelTransform.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Collectible/ModelTransform.cs startLine: 88 @@ -109,8 +109,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ModelTransform.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Collectible/ModelTransform.cs startLine: 105 @@ -138,8 +138,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ModelTransform.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NoTransform path: Common/Collectible/ModelTransform.cs startLine: 112 @@ -169,8 +169,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ModelTransform.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockDefaultGui path: Common/Collectible/ModelTransform.cs startLine: 124 @@ -200,8 +200,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ModelTransform.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockDefaultFp path: Common/Collectible/ModelTransform.cs startLine: 138 @@ -231,8 +231,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ModelTransform.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockDefaultTp path: Common/Collectible/ModelTransform.cs startLine: 152 @@ -262,8 +262,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ModelTransform.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockDefaultGround path: Common/Collectible/ModelTransform.cs startLine: 167 @@ -293,8 +293,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ModelTransform.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ItemDefaultGui path: Common/Collectible/ModelTransform.cs startLine: 182 @@ -324,8 +324,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ModelTransform.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ItemDefaultFp path: Common/Collectible/ModelTransform.cs startLine: 198 @@ -355,8 +355,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ModelTransform.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ItemDefaultTp path: Common/Collectible/ModelTransform.cs startLine: 212 @@ -386,8 +386,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ModelTransform.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ItemDefaultGround path: Common/Collectible/ModelTransform.cs startLine: 226 @@ -417,8 +417,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ModelTransform.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnsureDefaultValues path: Common/Collectible/ModelTransform.cs startLine: 243 @@ -447,8 +447,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ModelTransform.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithRotation path: Common/Collectible/ModelTransform.cs startLine: 250 @@ -478,8 +478,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ModelTransform.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Collectible/ModelTransform.cs startLine: 260 diff --git a/api/Vintagestory.API.Common.ModelTransformKeyFrame.yml b/api/Vintagestory.API.Common.ModelTransformKeyFrame.yml index ca7cd397..30aae984 100644 --- a/api/Vintagestory.API.Common.ModelTransformKeyFrame.yml +++ b/api/Vintagestory.API.Common.ModelTransformKeyFrame.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ModelTransformKeyFrame.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ModelTransformKeyFrame path: Common/Collectible/ModelTransformKeyFrame.cs startLine: 5 @@ -54,8 +54,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ModelTransformKeyFrame.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FrameNumber path: Common/Collectible/ModelTransformKeyFrame.cs startLine: 10 @@ -83,8 +83,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ModelTransformKeyFrame.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Transform path: Common/Collectible/ModelTransformKeyFrame.cs startLine: 15 diff --git a/api/Vintagestory.API.Common.ModelTransformNoDefaults.yml b/api/Vintagestory.API.Common.ModelTransformNoDefaults.yml index ed0be8f4..44197ed4 100644 --- a/api/Vintagestory.API.Common.ModelTransformNoDefaults.yml +++ b/api/Vintagestory.API.Common.ModelTransformNoDefaults.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ModelTransform.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ModelTransformNoDefaults path: Common/Collectible/ModelTransform.cs startLine: 6 @@ -72,8 +72,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ModelTransform.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Translation path: Common/Collectible/ModelTransform.cs startLine: 13 @@ -111,8 +111,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ModelTransform.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rotation path: Common/Collectible/ModelTransform.cs startLine: 18 @@ -150,8 +150,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ModelTransform.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Scale path: Common/Collectible/ModelTransform.cs startLine: 22 @@ -191,8 +191,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ModelTransform.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Origin path: Common/Collectible/ModelTransform.cs startLine: 28 @@ -230,8 +230,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ModelTransform.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rotate path: Common/Collectible/ModelTransform.cs startLine: 35 @@ -274,8 +274,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ModelTransform.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ScaleXYZ path: Common/Collectible/ModelTransform.cs startLine: 41 @@ -313,8 +313,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ModelTransform.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AsMatrix path: Common/Collectible/ModelTransform.cs startLine: 47 @@ -344,8 +344,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/ModelTransform.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clear path: Common/Collectible/ModelTransform.cs startLine: 71 diff --git a/api/Vintagestory.API.Common.MouseButtonConverter.yml b/api/Vintagestory.API.Common.MouseButtonConverter.yml index aacc01a5..00b8c440 100644 --- a/api/Vintagestory.API.Common.MouseButtonConverter.yml +++ b/api/Vintagestory.API.Common.MouseButtonConverter.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Common/Controls/EnumMouseButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MouseButtonConverter path: Common/Controls/EnumMouseButton.cs startLine: 21 @@ -51,8 +51,8 @@ items: source: remote: path: VintagestoryApi/Common/Controls/EnumMouseButton.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToEnumMouseButton path: Common/Controls/EnumMouseButton.cs startLine: 23 diff --git a/api/Vintagestory.API.Common.MultiblockStructure.yml b/api/Vintagestory.API.Common.MultiblockStructure.yml index c0277f56..0ad4662e 100644 --- a/api/Vintagestory.API.Common.MultiblockStructure.yml +++ b/api/Vintagestory.API.Common.MultiblockStructure.yml @@ -25,8 +25,8 @@ items: source: remote: path: VintagestoryApi/Common/MultiblockStructure.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MultiblockStructure path: Common/MultiblockStructure.cs startLine: 26 @@ -62,8 +62,8 @@ items: source: remote: path: VintagestoryApi/Common/MultiblockStructure.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HighlightSlotId path: Common/MultiblockStructure.cs startLine: 28 @@ -89,8 +89,8 @@ items: source: remote: path: VintagestoryApi/Common/MultiblockStructure.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockNumbers path: Common/MultiblockStructure.cs startLine: 30 @@ -116,8 +116,8 @@ items: source: remote: path: VintagestoryApi/Common/MultiblockStructure.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Offsets path: Common/MultiblockStructure.cs startLine: 32 @@ -143,8 +143,8 @@ items: source: remote: path: VintagestoryApi/Common/MultiblockStructure.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OffsetsOrientation path: Common/MultiblockStructure.cs startLine: 34 @@ -170,8 +170,8 @@ items: source: remote: path: VintagestoryApi/Common/MultiblockStructure.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetOrCreateBlockNumber path: Common/MultiblockStructure.cs startLine: 36 @@ -201,8 +201,8 @@ items: source: remote: path: VintagestoryApi/Common/MultiblockStructure.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InitForUse path: Common/MultiblockStructure.cs startLine: 50 @@ -233,8 +233,8 @@ items: source: remote: path: VintagestoryApi/Common/MultiblockStructure.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WalkMatchingBlocks path: Common/MultiblockStructure.cs startLine: 74 @@ -269,8 +269,8 @@ items: source: remote: path: VintagestoryApi/Common/MultiblockStructure.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InCompleteBlockCount path: Common/MultiblockStructure.cs startLine: 104 @@ -310,8 +310,8 @@ items: source: remote: path: VintagestoryApi/Common/MultiblockStructure.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClearHighlights path: Common/MultiblockStructure.cs startLine: 131 @@ -341,8 +341,8 @@ items: source: remote: path: VintagestoryApi/Common/MultiblockStructure.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HighlightIncompleteParts path: Common/MultiblockStructure.cs startLine: 136 diff --git a/api/Vintagestory.API.Common.NewSlotDelegate.yml b/api/Vintagestory.API.Common.NewSlotDelegate.yml index 616c20dd..f16b6653 100644 --- a/api/Vintagestory.API.Common.NewSlotDelegate.yml +++ b/api/Vintagestory.API.Common.NewSlotDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryGeneric.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NewSlotDelegate path: Common/Inventory/InventoryGeneric.cs startLine: 9 diff --git a/api/Vintagestory.API.Common.NoAnimationManager.yml b/api/Vintagestory.API.Common.NoAnimationManager.yml index 1ba6790c..cd03e0fe 100644 --- a/api/Vintagestory.API.Common.NoAnimationManager.yml +++ b/api/Vintagestory.API.Common.NoAnimationManager.yml @@ -34,8 +34,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/NoAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NoAnimationManager path: Common/Model/Animation/NoAnimationManager.cs startLine: 65 @@ -74,8 +74,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/NoAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Model/Animation/NoAnimationManager.cs startLine: 68 @@ -103,8 +103,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/NoAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Animator path: Common/Model/Animation/NoAnimationManager.cs startLine: 73 @@ -136,8 +136,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/NoAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AnimationsDirty path: Common/Model/Animation/NoAnimationManager.cs startLine: 75 @@ -169,8 +169,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/NoAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ActiveAnimationsByAnimCode path: Common/Model/Animation/NoAnimationManager.cs startLine: 78 @@ -202,8 +202,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/NoAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HeadController path: Common/Model/Animation/NoAnimationManager.cs startLine: 80 @@ -235,8 +235,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/NoAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Common/Model/Animation/NoAnimationManager.cs startLine: 82 @@ -265,8 +265,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/NoAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromAttributes path: Common/Model/Animation/NoAnimationManager.cs startLine: 87 @@ -305,8 +305,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/NoAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Init path: Common/Model/Animation/NoAnimationManager.cs startLine: 92 @@ -342,8 +342,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/NoAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsAnimationActive path: Common/Model/Animation/NoAnimationManager.cs startLine: 97 @@ -379,8 +379,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/NoAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnAnimationStopped path: Common/Model/Animation/NoAnimationManager.cs startLine: 102 @@ -416,8 +416,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/NoAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnClientFrame path: Common/Model/Animation/NoAnimationManager.cs startLine: 107 @@ -451,8 +451,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/NoAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnReceivedServerAnimations path: Common/Model/Animation/NoAnimationManager.cs startLine: 112 @@ -494,8 +494,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/NoAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnServerTick path: Common/Model/Animation/NoAnimationManager.cs startLine: 117 @@ -529,8 +529,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/NoAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterFrameCallback path: Common/Model/Animation/NoAnimationManager.cs startLine: 122 @@ -561,8 +561,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/NoAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ResetAnimation path: Common/Model/Animation/NoAnimationManager.cs startLine: 127 @@ -598,8 +598,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/NoAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartAnimation path: Common/Model/Animation/NoAnimationManager.cs startLine: 131 @@ -635,8 +635,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/NoAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartAnimation path: Common/Model/Animation/NoAnimationManager.cs startLine: 136 @@ -675,8 +675,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/NoAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StopAnimation path: Common/Model/Animation/NoAnimationManager.cs startLine: 141 @@ -712,8 +712,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/NoAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToAttributes path: Common/Model/Animation/NoAnimationManager.cs startLine: 146 diff --git a/api/Vintagestory.API.Common.NoAnimator.yml b/api/Vintagestory.API.Common.NoAnimator.yml index 8979f5d2..04ff3877 100644 --- a/api/Vintagestory.API.Common.NoAnimator.yml +++ b/api/Vintagestory.API.Common.NoAnimator.yml @@ -24,8 +24,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/NoAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NoAnimator path: Common/Model/Animation/NoAnimationManager.cs startLine: 10 @@ -63,8 +63,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/NoAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Matrices4x3 path: Common/Model/Animation/NoAnimationManager.cs startLine: 15 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/NoAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ActiveAnimationCount path: Common/Model/Animation/NoAnimationManager.cs startLine: 20 @@ -129,8 +129,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/NoAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CalculateMatrices path: Common/Model/Animation/NoAnimationManager.cs startLine: 22 @@ -162,8 +162,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/NoAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RunningAnimations path: Common/Model/Animation/NoAnimationManager.cs startLine: 24 @@ -195,8 +195,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/NoAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DumpCurrentState path: Common/Model/Animation/NoAnimationManager.cs startLine: 26 @@ -226,8 +226,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/NoAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAnimationState path: Common/Model/Animation/NoAnimationManager.cs startLine: 31 @@ -263,8 +263,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/NoAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAttachmentPointPose path: Common/Model/Animation/NoAnimationManager.cs startLine: 41 @@ -303,8 +303,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/NoAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetPosebyName path: Common/Model/Animation/NoAnimationManager.cs startLine: 46 @@ -342,8 +342,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/NoAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnFrame path: Common/Model/Animation/NoAnimationManager.cs startLine: 56 diff --git a/api/Vintagestory.API.Common.OnCommandDelegate.yml b/api/Vintagestory.API.Common.OnCommandDelegate.yml index 35058c1b..e6cc97ac 100644 --- a/api/Vintagestory.API.Common.OnCommandDelegate.yml +++ b/api/Vintagestory.API.Common.OnCommandDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnCommandDelegate path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 242 diff --git a/api/Vintagestory.API.Common.OnEntityAction.yml b/api/Vintagestory.API.Common.OnEntityAction.yml index 3504b2e8..0c450c94 100644 --- a/api/Vintagestory.API.Common.OnEntityAction.yml +++ b/api/Vintagestory.API.Common.OnEntityAction.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityControls.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnEntityAction path: Common/Entity/EntityControls.cs startLine: 8 diff --git a/api/Vintagestory.API.Common.OnGetClimateDelegate.yml b/api/Vintagestory.API.Common.OnGetClimateDelegate.yml index 0474fae0..40ba2974 100644 --- a/api/Vintagestory.API.Common.OnGetClimateDelegate.yml +++ b/api/Vintagestory.API.Common.OnGetClimateDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnGetClimateDelegate path: Common/API/Delegates.cs startLine: 150 diff --git a/api/Vintagestory.API.Common.OnGetWindSpeedDelegate.yml b/api/Vintagestory.API.Common.OnGetWindSpeedDelegate.yml index a5636ab1..d60d6bbc 100644 --- a/api/Vintagestory.API.Common.OnGetWindSpeedDelegate.yml +++ b/api/Vintagestory.API.Common.OnGetWindSpeedDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnGetWindSpeedDelegate path: Common/API/Delegates.cs startLine: 152 diff --git a/api/Vintagestory.API.Common.OnInteractDelegate.yml b/api/Vintagestory.API.Common.OnInteractDelegate.yml index c6992d93..6c5e5961 100644 --- a/api/Vintagestory.API.Common.OnInteractDelegate.yml +++ b/api/Vintagestory.API.Common.OnInteractDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnInteractDelegate path: Common/API/Delegates.cs startLine: 122 diff --git a/api/Vintagestory.API.Common.OnInventoryClosedDelegate.yml b/api/Vintagestory.API.Common.OnInventoryClosedDelegate.yml index 6710f844..38c25479 100644 --- a/api/Vintagestory.API.Common.OnInventoryClosedDelegate.yml +++ b/api/Vintagestory.API.Common.OnInventoryClosedDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnInventoryClosedDelegate path: Common/Inventory/InventoryBase.cs startLine: 13 diff --git a/api/Vintagestory.API.Common.OnInventoryOpenedDelegate.yml b/api/Vintagestory.API.Common.OnInventoryOpenedDelegate.yml index b966d1eb..85dab9d8 100644 --- a/api/Vintagestory.API.Common.OnInventoryOpenedDelegate.yml +++ b/api/Vintagestory.API.Common.OnInventoryOpenedDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/InventoryBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnInventoryOpenedDelegate path: Common/Inventory/InventoryBase.cs startLine: 12 diff --git a/api/Vintagestory.API.Common.OnInventorySlot.yml b/api/Vintagestory.API.Common.OnInventorySlot.yml index 723adabe..aacba6e7 100644 --- a/api/Vintagestory.API.Common.OnInventorySlot.yml +++ b/api/Vintagestory.API.Common.OnInventorySlot.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnInventorySlot path: Common/API/Delegates.cs startLine: 12 diff --git a/api/Vintagestory.API.Common.OnlinePlayerArgParser.yml b/api/Vintagestory.API.Common.OnlinePlayerArgParser.yml index ffa9a8c5..10d08b46 100644 --- a/api/Vintagestory.API.Common.OnlinePlayerArgParser.yml +++ b/api/Vintagestory.API.Common.OnlinePlayerArgParser.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnlinePlayerArgParser path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1378 @@ -75,8 +75,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: api path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1380 @@ -102,8 +102,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: player path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1381 @@ -129,8 +129,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1383 @@ -165,8 +165,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValidRange path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1388 @@ -198,8 +198,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1393 @@ -228,8 +228,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1398 @@ -264,8 +264,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1403 @@ -295,8 +295,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1409 diff --git a/api/Vintagestory.API.Common.ParticleBase.yml b/api/Vintagestory.API.Common.ParticleBase.yml index 1d7932ee..59f0e582 100644 --- a/api/Vintagestory.API.Common.ParticleBase.yml +++ b/api/Vintagestory.API.Common.ParticleBase.yml @@ -37,8 +37,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticleBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParticleBase path: Common/Particle/ParticleBase.cs startLine: 9 @@ -74,8 +74,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticleBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Next path: Common/Particle/ParticleBase.cs startLine: 11 @@ -101,8 +101,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticleBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Prev path: Common/Particle/ParticleBase.cs startLine: 12 @@ -128,8 +128,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticleBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorRed path: Common/Particle/ParticleBase.cs startLine: 14 @@ -155,8 +155,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticleBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorGreen path: Common/Particle/ParticleBase.cs startLine: 15 @@ -182,8 +182,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticleBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorBlue path: Common/Particle/ParticleBase.cs startLine: 16 @@ -209,8 +209,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticleBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorAlpha path: Common/Particle/ParticleBase.cs startLine: 17 @@ -236,8 +236,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticleBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VertexFlags path: Common/Particle/ParticleBase.cs startLine: 18 @@ -263,8 +263,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticleBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LifeLength path: Common/Particle/ParticleBase.cs startLine: 19 @@ -290,8 +290,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticleBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SecondsAlive path: Common/Particle/ParticleBase.cs startLine: 21 @@ -317,8 +317,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticleBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Alive path: Common/Particle/ParticleBase.cs startLine: 22 @@ -344,8 +344,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticleBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Velocity path: Common/Particle/ParticleBase.cs startLine: 24 @@ -371,8 +371,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticleBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Position path: Common/Particle/ParticleBase.cs startLine: 25 @@ -398,8 +398,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticleBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: prevPosDeltaX path: Common/Particle/ParticleBase.cs startLine: 27 @@ -425,8 +425,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticleBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: prevPosDeltaY path: Common/Particle/ParticleBase.cs startLine: 27 @@ -452,8 +452,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticleBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: prevPosDeltaZ path: Common/Particle/ParticleBase.cs startLine: 27 @@ -479,8 +479,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticleBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: prevPosAdvance path: Common/Particle/ParticleBase.cs startLine: 28 @@ -506,8 +506,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticleBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: lightrgbs path: Common/Particle/ParticleBase.cs startLine: 31 @@ -533,8 +533,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticleBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: accum path: Common/Particle/ParticleBase.cs startLine: 32 @@ -560,8 +560,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticleBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: slowTick path: Common/Particle/ParticleBase.cs startLine: 33 @@ -587,8 +587,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticleBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TickFixedStep path: Common/Particle/ParticleBase.cs startLine: 43 @@ -631,8 +631,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticleBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TickNow path: Common/Particle/ParticleBase.cs startLine: 73 @@ -669,8 +669,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticleBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UpdateBuffers path: Common/Particle/ParticleBase.cs startLine: 75 diff --git a/api/Vintagestory.API.Common.ParticlesProviderBase.yml b/api/Vintagestory.API.Common.ParticlesProviderBase.yml index d61ee179..f19c3e3a 100644 --- a/api/Vintagestory.API.Common.ParticlesProviderBase.yml +++ b/api/Vintagestory.API.Common.ParticlesProviderBase.yml @@ -50,8 +50,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParticlesProviderBase path: Common/Particle/ParticlesProviderBase.cs startLine: 9 @@ -92,8 +92,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Async path: Common/Particle/ParticlesProviderBase.cs startLine: 11 @@ -125,8 +125,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Bounciness path: Common/Particle/ParticlesProviderBase.cs startLine: 12 @@ -157,8 +157,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RandomVelocityChange path: Common/Particle/ParticlesProviderBase.cs startLine: 13 @@ -189,8 +189,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DieOnRainHeightmap path: Common/Particle/ParticlesProviderBase.cs startLine: 14 @@ -222,8 +222,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DieInLiquid path: Common/Particle/ParticlesProviderBase.cs startLine: 20 @@ -256,8 +256,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SwimOnLiquid path: Common/Particle/ParticlesProviderBase.cs startLine: 22 @@ -288,8 +288,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DieInAir path: Common/Particle/ParticlesProviderBase.cs startLine: 28 @@ -322,8 +322,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Quantity path: Common/Particle/ParticlesProviderBase.cs startLine: 34 @@ -356,8 +356,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pos path: Common/Particle/ParticlesProviderBase.cs startLine: 40 @@ -390,8 +390,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetVelocity path: Common/Particle/ParticlesProviderBase.cs startLine: 47 @@ -427,8 +427,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRgbaColor path: Common/Particle/ParticlesProviderBase.cs startLine: 57 @@ -464,8 +464,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OpacityEvolve path: Common/Particle/ParticlesProviderBase.cs startLine: 66 @@ -498,8 +498,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RedEvolve path: Common/Particle/ParticlesProviderBase.cs startLine: 72 @@ -532,8 +532,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GreenEvolve path: Common/Particle/ParticlesProviderBase.cs startLine: 78 @@ -566,8 +566,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlueEvolve path: Common/Particle/ParticlesProviderBase.cs startLine: 84 @@ -600,8 +600,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParticleModel path: Common/Particle/ParticlesProviderBase.cs startLine: 90 @@ -634,8 +634,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Size path: Common/Particle/ParticlesProviderBase.cs startLine: 96 @@ -668,8 +668,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SizeEvolve path: Common/Particle/ParticlesProviderBase.cs startLine: 102 @@ -702,8 +702,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VelocityEvolve path: Common/Particle/ParticlesProviderBase.cs startLine: 108 @@ -736,8 +736,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GravityEffect path: Common/Particle/ParticlesProviderBase.cs startLine: 114 @@ -770,8 +770,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LifeLength path: Common/Particle/ParticlesProviderBase.cs startLine: 120 @@ -804,8 +804,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VertexFlags path: Common/Particle/ParticlesProviderBase.cs startLine: 126 @@ -838,8 +838,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SelfPropelled path: Common/Particle/ParticlesProviderBase.cs startLine: 132 @@ -872,8 +872,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TerrainCollision path: Common/Particle/ParticlesProviderBase.cs startLine: 138 @@ -906,8 +906,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Common/Particle/ParticlesProviderBase.cs startLine: 143 @@ -940,8 +940,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Particle/ParticlesProviderBase.cs startLine: 153 @@ -977,8 +977,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SecondarySpawnInterval path: Common/Particle/ParticlesProviderBase.cs startLine: 162 @@ -1011,8 +1011,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SecondaryParticles path: Common/Particle/ParticlesProviderBase.cs startLine: 168 @@ -1045,8 +1045,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DeathParticles path: Common/Particle/ParticlesProviderBase.cs startLine: 174 @@ -1079,8 +1079,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeginParticle path: Common/Particle/ParticlesProviderBase.cs startLine: 175 @@ -1109,8 +1109,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PrepareForSecondarySpawn path: Common/Particle/ParticlesProviderBase.cs startLine: 176 @@ -1143,8 +1143,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Init path: Common/Particle/ParticlesProviderBase.cs startLine: 177 @@ -1177,8 +1177,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParentVelocity path: Common/Particle/ParticlesProviderBase.cs startLine: 180 @@ -1209,8 +1209,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WindAffected path: Common/Particle/ParticlesProviderBase.cs startLine: 182 @@ -1238,8 +1238,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/ParticlesProviderBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParentVelocityWeight path: Common/Particle/ParticlesProviderBase.cs startLine: 184 diff --git a/api/Vintagestory.API.Common.PermaFertilityBoost.yml b/api/Vintagestory.API.Common.PermaFertilityBoost.yml index 3305618b..3ab95505 100644 --- a/api/Vintagestory.API.Common.PermaFertilityBoost.yml +++ b/api/Vintagestory.API.Common.PermaFertilityBoost.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/FertilizerProps.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PermaFertilityBoost path: Common/Collectible/FertilizerProps.cs startLine: 11 @@ -54,8 +54,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/FertilizerProps.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Common/Collectible/FertilizerProps.cs startLine: 13 @@ -81,8 +81,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/FertilizerProps.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: N path: Common/Collectible/FertilizerProps.cs startLine: 14 @@ -108,8 +108,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/FertilizerProps.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: P path: Common/Collectible/FertilizerProps.cs startLine: 15 @@ -135,8 +135,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/FertilizerProps.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: K path: Common/Collectible/FertilizerProps.cs startLine: 16 diff --git a/api/Vintagestory.API.Common.PlaceBlockDelegate.yml b/api/Vintagestory.API.Common.PlaceBlockDelegate.yml index eadecaf8..8ea77d04 100644 --- a/api/Vintagestory.API.Common.PlaceBlockDelegate.yml +++ b/api/Vintagestory.API.Common.PlaceBlockDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/BlockSchematic.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlaceBlockDelegate path: Common/Collectible/Block/BlockSchematic.cs startLine: 13 diff --git a/api/Vintagestory.API.Common.PlayStyle.yml b/api/Vintagestory.API.Common.PlayStyle.yml index b8bb5183..dc2780f2 100644 --- a/api/Vintagestory.API.Common.PlayStyle.yml +++ b/api/Vintagestory.API.Common.PlayStyle.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/Playstyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayStyle path: Common/Playstyle/Playstyle.cs startLine: 5 @@ -57,8 +57,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/Playstyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Common/Playstyle/Playstyle.cs startLine: 8 @@ -94,8 +94,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/Playstyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayListCode path: Common/Playstyle/Playstyle.cs startLine: 10 @@ -131,8 +131,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/Playstyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LangCode path: Common/Playstyle/Playstyle.cs startLine: 12 @@ -168,8 +168,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/Playstyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ListOrder path: Common/Playstyle/Playstyle.cs startLine: 14 @@ -205,8 +205,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/Playstyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mods path: Common/Playstyle/Playstyle.cs startLine: 16 @@ -242,8 +242,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/Playstyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WorldType path: Common/Playstyle/Playstyle.cs startLine: 18 @@ -279,8 +279,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/Playstyle.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WorldConfig path: Common/Playstyle/Playstyle.cs startLine: 20 diff --git a/api/Vintagestory.API.Common.PlayerAnimationManager.yml b/api/Vintagestory.API.Common.PlayerAnimationManager.yml index a2be39ca..7497258b 100644 --- a/api/Vintagestory.API.Common.PlayerAnimationManager.yml +++ b/api/Vintagestory.API.Common.PlayerAnimationManager.yml @@ -60,8 +60,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerAnimationManager path: Common/Entity/PlayerAnimationManager.cs startLine: 8 @@ -110,8 +110,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UseFpAnmations path: Common/Entity/PlayerAnimationManager.cs startLine: 10 @@ -137,8 +137,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Init path: Common/Entity/PlayerAnimationManager.cs startLine: 18 @@ -173,8 +173,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnClientFrame path: Common/Entity/PlayerAnimationManager.cs startLine: 25 @@ -209,8 +209,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ResetAnimation path: Common/Entity/PlayerAnimationManager.cs startLine: 36 @@ -245,8 +245,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartAnimation path: Common/Entity/PlayerAnimationManager.cs startLine: 43 @@ -286,8 +286,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartAnimation path: Common/Entity/PlayerAnimationManager.cs startLine: 61 @@ -324,8 +324,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterFrameCallback path: Common/Entity/PlayerAnimationManager.cs startLine: 77 @@ -355,8 +355,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StopAnimation path: Common/Entity/PlayerAnimationManager.cs startLine: 86 @@ -391,8 +391,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StopSelfAnimation path: Common/Entity/PlayerAnimationManager.cs startLine: 94 @@ -423,8 +423,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsAnimationActive path: Common/Entity/PlayerAnimationManager.cs startLine: 103 @@ -459,8 +459,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsAnimationActiveOrRunning path: Common/Entity/PlayerAnimationManager.cs startLine: 116 @@ -493,8 +493,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsAnimationMostlyRunning path: Common/Entity/PlayerAnimationManager.cs startLine: 122 @@ -527,8 +527,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: onReceivedServerAnimation path: Common/Entity/PlayerAnimationManager.cs startLine: 128 @@ -558,8 +558,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnReceivedServerAnimations path: Common/Entity/PlayerAnimationManager.cs startLine: 133 @@ -600,8 +600,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: lastActiveHeldReadyAnimation path: Common/Entity/PlayerAnimationManager.cs startLine: 139 @@ -627,8 +627,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: lastActiveRightHeldIdleAnimation path: Common/Entity/PlayerAnimationManager.cs startLine: 140 @@ -654,8 +654,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: lastActiveLeftHeldIdleAnimation path: Common/Entity/PlayerAnimationManager.cs startLine: 141 @@ -681,8 +681,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: lastActiveHeldHitAnimation path: Common/Entity/PlayerAnimationManager.cs startLine: 143 @@ -708,8 +708,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: lastActiveHeldUseAnimation path: Common/Entity/PlayerAnimationManager.cs startLine: 144 @@ -735,8 +735,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: lastRunningHeldHitAnimation path: Common/Entity/PlayerAnimationManager.cs startLine: 146 @@ -762,8 +762,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: lastRunningHeldUseAnimation path: Common/Entity/PlayerAnimationManager.cs startLine: 147 @@ -789,8 +789,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnActiveSlotChanged path: Common/Entity/PlayerAnimationManager.cs startLine: 149 @@ -818,8 +818,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartHeldReadyAnim path: Common/Entity/PlayerAnimationManager.cs startLine: 159 @@ -852,8 +852,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartHeldUseAnim path: Common/Entity/PlayerAnimationManager.cs startLine: 172 @@ -884,8 +884,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartHeldHitAnim path: Common/Entity/PlayerAnimationManager.cs startLine: 182 @@ -916,8 +916,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartRightHeldIdleAnim path: Common/Entity/PlayerAnimationManager.cs startLine: 192 @@ -948,8 +948,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartLeftHeldIdleAnim path: Common/Entity/PlayerAnimationManager.cs startLine: 201 @@ -980,8 +980,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StopHeldReadyAnim path: Common/Entity/PlayerAnimationManager.cs startLine: 210 @@ -1006,8 +1006,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StopHeldUseAnim path: Common/Entity/PlayerAnimationManager.cs startLine: 220 @@ -1032,8 +1032,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StopHeldAttackAnim path: Common/Entity/PlayerAnimationManager.cs startLine: 226 @@ -1058,8 +1058,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StopRightHeldIdleAnim path: Common/Entity/PlayerAnimationManager.cs startLine: 240 @@ -1084,8 +1084,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StopLeftHeldIdleAnim path: Common/Entity/PlayerAnimationManager.cs startLine: 245 @@ -1110,8 +1110,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsHeldHitAuthorative path: Common/Entity/PlayerAnimationManager.cs startLine: 252 @@ -1138,8 +1138,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsHeldUseActive path: Common/Entity/PlayerAnimationManager.cs startLine: 268 @@ -1166,8 +1166,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsHeldHitActive path: Common/Entity/PlayerAnimationManager.cs startLine: 273 @@ -1194,8 +1194,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsLeftHeldActive path: Common/Entity/PlayerAnimationManager.cs startLine: 278 @@ -1222,8 +1222,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsRightHeldActive path: Common/Entity/PlayerAnimationManager.cs startLine: 283 @@ -1250,8 +1250,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsRightHeldReadyActive path: Common/Entity/PlayerAnimationManager.cs startLine: 288 @@ -1278,8 +1278,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HeldRightReadyAnimChanged path: Common/Entity/PlayerAnimationManager.cs startLine: 293 @@ -1312,8 +1312,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HeldUseAnimChanged path: Common/Entity/PlayerAnimationManager.cs startLine: 298 @@ -1346,8 +1346,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HeldHitAnimChanged path: Common/Entity/PlayerAnimationManager.cs startLine: 303 @@ -1380,8 +1380,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RightHeldIdleChanged path: Common/Entity/PlayerAnimationManager.cs startLine: 308 @@ -1414,8 +1414,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LeftHeldIdleChanged path: Common/Entity/PlayerAnimationManager.cs startLine: 313 @@ -1448,8 +1448,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromAttributes path: Common/Entity/PlayerAnimationManager.cs startLine: 319 @@ -1487,8 +1487,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/PlayerAnimationManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToAttributes path: Common/Entity/PlayerAnimationManager.cs startLine: 332 diff --git a/api/Vintagestory.API.Common.PlayerChatDelegate.yml b/api/Vintagestory.API.Common.PlayerChatDelegate.yml index 1d45cb5f..6635ae42 100644 --- a/api/Vintagestory.API.Common.PlayerChatDelegate.yml +++ b/api/Vintagestory.API.Common.PlayerChatDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerChatDelegate path: Common/API/Delegates.cs startLine: 87 diff --git a/api/Vintagestory.API.Common.PlayerDeathDelegate.yml b/api/Vintagestory.API.Common.PlayerDeathDelegate.yml index 4bbf7089..bae8100b 100644 --- a/api/Vintagestory.API.Common.PlayerDeathDelegate.yml +++ b/api/Vintagestory.API.Common.PlayerDeathDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerDeathDelegate path: Common/API/Delegates.cs startLine: 94 diff --git a/api/Vintagestory.API.Common.PlayerDelegate.yml b/api/Vintagestory.API.Common.PlayerDelegate.yml index e8ae3945..ccaffe32 100644 --- a/api/Vintagestory.API.Common.PlayerDelegate.yml +++ b/api/Vintagestory.API.Common.PlayerDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerDelegate path: Common/API/Delegates.cs startLine: 112 diff --git a/api/Vintagestory.API.Common.PlayerGroupMembership.yml b/api/Vintagestory.API.Common.PlayerGroupMembership.yml index c36b8075..0c285380 100644 --- a/api/Vintagestory.API.Common.PlayerGroupMembership.yml +++ b/api/Vintagestory.API.Common.PlayerGroupMembership.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/PlayerGroupMembership.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerGroupMembership path: Common/PlayerGroupMembership.cs startLine: 2 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Common/PlayerGroupMembership.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Level path: Common/PlayerGroupMembership.cs startLine: 7 @@ -82,8 +82,8 @@ items: source: remote: path: VintagestoryApi/Common/PlayerGroupMembership.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GroupName path: Common/PlayerGroupMembership.cs startLine: 12 @@ -111,8 +111,8 @@ items: source: remote: path: VintagestoryApi/Common/PlayerGroupMembership.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GroupUid path: Common/PlayerGroupMembership.cs startLine: 17 diff --git a/api/Vintagestory.API.Common.PlayerHeadController.yml b/api/Vintagestory.API.Common.PlayerHeadController.yml index cee0b705..1097c01b 100644 --- a/api/Vintagestory.API.Common.PlayerHeadController.yml +++ b/api/Vintagestory.API.Common.PlayerHeadController.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/EntityHeadController.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerHeadController path: Common/Model/Animation/EntityHeadController.cs startLine: 6 @@ -66,8 +66,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/EntityHeadController.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: player path: Common/Model/Animation/EntityHeadController.cs startLine: 8 @@ -93,8 +93,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/EntityHeadController.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: turnOpposite path: Common/Model/Animation/EntityHeadController.cs startLine: 10 @@ -120,8 +120,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/EntityHeadController.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: rotateTpYawNow path: Common/Model/Animation/EntityHeadController.cs startLine: 11 @@ -147,8 +147,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/EntityHeadController.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Model/Animation/EntityHeadController.cs startLine: 14 @@ -183,8 +183,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/EntityHeadController.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnFrame path: Common/Model/Animation/EntityHeadController.cs startLine: 19 diff --git a/api/Vintagestory.API.Common.PlayerRoleArgParser.yml b/api/Vintagestory.API.Common.PlayerRoleArgParser.yml index 33ca444b..95ed755e 100644 --- a/api/Vintagestory.API.Common.PlayerRoleArgParser.yml +++ b/api/Vintagestory.API.Common.PlayerRoleArgParser.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerRoleArgParser path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1891 @@ -73,8 +73,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1895 @@ -109,8 +109,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1900 @@ -140,8 +140,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1906 @@ -182,8 +182,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1926 @@ -212,8 +212,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1931 @@ -248,8 +248,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValidRange path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1936 diff --git a/api/Vintagestory.API.Common.PlayerSpawnPos.yml b/api/Vintagestory.API.Common.PlayerSpawnPos.yml index 6f240fe9..5e423905 100644 --- a/api/Vintagestory.API.Common.PlayerSpawnPos.yml +++ b/api/Vintagestory.API.Common.PlayerSpawnPos.yml @@ -25,8 +25,8 @@ items: source: remote: path: VintagestoryApi/Common/PlayerSpawn.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerSpawnPos path: Common/PlayerSpawn.cs startLine: 5 @@ -69,8 +69,8 @@ items: source: remote: path: VintagestoryApi/Common/PlayerSpawn.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: x path: Common/PlayerSpawn.cs startLine: 9 @@ -108,8 +108,8 @@ items: source: remote: path: VintagestoryApi/Common/PlayerSpawn.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: y path: Common/PlayerSpawn.cs startLine: 12 @@ -147,8 +147,8 @@ items: source: remote: path: VintagestoryApi/Common/PlayerSpawn.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: z path: Common/PlayerSpawn.cs startLine: 15 @@ -186,8 +186,8 @@ items: source: remote: path: VintagestoryApi/Common/PlayerSpawn.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: yaw path: Common/PlayerSpawn.cs startLine: 18 @@ -225,8 +225,8 @@ items: source: remote: path: VintagestoryApi/Common/PlayerSpawn.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: pitch path: Common/PlayerSpawn.cs startLine: 21 @@ -264,8 +264,8 @@ items: source: remote: path: VintagestoryApi/Common/PlayerSpawn.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: roll path: Common/PlayerSpawn.cs startLine: 24 @@ -303,8 +303,8 @@ items: source: remote: path: VintagestoryApi/Common/PlayerSpawn.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemainingUses path: Common/PlayerSpawn.cs startLine: 27 @@ -342,8 +342,8 @@ items: source: remote: path: VintagestoryApi/Common/PlayerSpawn.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/PlayerSpawn.cs startLine: 30 @@ -371,8 +371,8 @@ items: source: remote: path: VintagestoryApi/Common/PlayerSpawn.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/PlayerSpawn.cs startLine: 37 @@ -407,8 +407,8 @@ items: source: remote: path: VintagestoryApi/Common/PlayerSpawn.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Common/PlayerSpawn.cs startLine: 44 diff --git a/api/Vintagestory.API.Common.PlayerUidName.yml b/api/Vintagestory.API.Common.PlayerUidName.yml index 0fb45acd..6de6b8c5 100644 --- a/api/Vintagestory.API.Common.PlayerUidName.yml +++ b/api/Vintagestory.API.Common.PlayerUidName.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerUidName path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1204 @@ -54,8 +54,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Uid path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1206 @@ -81,8 +81,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Name path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1207 @@ -108,8 +108,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1209 @@ -137,8 +137,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1210 diff --git a/api/Vintagestory.API.Common.PlayersArgParser.yml b/api/Vintagestory.API.Common.PlayersArgParser.yml index 012b5e3f..38925816 100644 --- a/api/Vintagestory.API.Common.PlayersArgParser.yml +++ b/api/Vintagestory.API.Common.PlayersArgParser.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayersArgParser path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1217 @@ -74,8 +74,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: api path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1219 @@ -101,8 +101,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1222 @@ -137,8 +137,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSyntaxExplanation path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1227 @@ -173,8 +173,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValidRange path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1235 @@ -206,8 +206,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1240 @@ -236,8 +236,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1245 @@ -272,8 +272,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1250 @@ -303,8 +303,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1256 diff --git a/api/Vintagestory.API.Common.PositionArgumentParserBase.yml b/api/Vintagestory.API.Common.PositionArgumentParserBase.yml index 48fe11d0..ba710a6f 100644 --- a/api/Vintagestory.API.Common.PositionArgumentParserBase.yml +++ b/api/Vintagestory.API.Common.PositionArgumentParserBase.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PositionArgumentParserBase path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 252 @@ -77,8 +77,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 254 @@ -111,8 +111,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: tryGetPositionBySelector path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 258 diff --git a/api/Vintagestory.API.Common.PositionMismatchDelegate.yml b/api/Vintagestory.API.Common.PositionMismatchDelegate.yml index fa66546e..d658a6b4 100644 --- a/api/Vintagestory.API.Common.PositionMismatchDelegate.yml +++ b/api/Vintagestory.API.Common.PositionMismatchDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/MultiblockStructure.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PositionMismatchDelegate path: Common/MultiblockStructure.cs startLine: 21 diff --git a/api/Vintagestory.API.Common.PositionProviderDelegate.yml b/api/Vintagestory.API.Common.PositionProviderDelegate.yml index d99d1681..9c213868 100644 --- a/api/Vintagestory.API.Common.PositionProviderDelegate.yml +++ b/api/Vintagestory.API.Common.PositionProviderDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PositionProviderDelegate path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 16 diff --git a/api/Vintagestory.API.Common.PrivilegeArgParser.yml b/api/Vintagestory.API.Common.PrivilegeArgParser.yml index 3b5008eb..40930a92 100644 --- a/api/Vintagestory.API.Common.PrivilegeArgParser.yml +++ b/api/Vintagestory.API.Common.PrivilegeArgParser.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PrivilegeArgParser path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1942 @@ -73,8 +73,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1946 @@ -109,8 +109,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1954 @@ -140,8 +140,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1960 @@ -182,8 +182,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1992 @@ -212,8 +212,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1997 @@ -248,8 +248,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValidRange path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 2002 diff --git a/api/Vintagestory.API.Common.ProfileEntry.yml b/api/Vintagestory.API.Common.ProfileEntry.yml index 390b02a0..205b30f9 100644 --- a/api/Vintagestory.API.Common.ProfileEntry.yml +++ b/api/Vintagestory.API.Common.ProfileEntry.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/FrameProfilerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ProfileEntry path: Common/FrameProfilerUtil.cs startLine: 9 @@ -54,8 +54,8 @@ items: source: remote: path: VintagestoryApi/Common/FrameProfilerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ElapsedTicks path: Common/FrameProfilerUtil.cs startLine: 11 @@ -81,8 +81,8 @@ items: source: remote: path: VintagestoryApi/Common/FrameProfilerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CallCount path: Common/FrameProfilerUtil.cs startLine: 12 @@ -108,8 +108,8 @@ items: source: remote: path: VintagestoryApi/Common/FrameProfilerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/FrameProfilerUtil.cs startLine: 14 @@ -137,8 +137,8 @@ items: source: remote: path: VintagestoryApi/Common/FrameProfilerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/FrameProfilerUtil.cs startLine: 17 diff --git a/api/Vintagestory.API.Common.ProfileEntryRange.yml b/api/Vintagestory.API.Common.ProfileEntryRange.yml index 4f99c287..cdebf38a 100644 --- a/api/Vintagestory.API.Common.ProfileEntryRange.yml +++ b/api/Vintagestory.API.Common.ProfileEntryRange.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Common/FrameProfilerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ProfileEntryRange path: Common/FrameProfilerUtil.cs startLine: 24 @@ -58,8 +58,8 @@ items: source: remote: path: VintagestoryApi/Common/FrameProfilerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Common/FrameProfilerUtil.cs startLine: 26 @@ -85,8 +85,8 @@ items: source: remote: path: VintagestoryApi/Common/FrameProfilerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Start path: Common/FrameProfilerUtil.cs startLine: 27 @@ -112,8 +112,8 @@ items: source: remote: path: VintagestoryApi/Common/FrameProfilerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LastMark path: Common/FrameProfilerUtil.cs startLine: 28 @@ -139,8 +139,8 @@ items: source: remote: path: VintagestoryApi/Common/FrameProfilerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CallCount path: Common/FrameProfilerUtil.cs startLine: 29 @@ -166,8 +166,8 @@ items: source: remote: path: VintagestoryApi/Common/FrameProfilerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ElapsedTicks path: Common/FrameProfilerUtil.cs startLine: 31 @@ -193,8 +193,8 @@ items: source: remote: path: VintagestoryApi/Common/FrameProfilerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Marks path: Common/FrameProfilerUtil.cs startLine: 33 @@ -220,8 +220,8 @@ items: source: remote: path: VintagestoryApi/Common/FrameProfilerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChildRanges path: Common/FrameProfilerUtil.cs startLine: 35 @@ -247,8 +247,8 @@ items: source: remote: path: VintagestoryApi/Common/FrameProfilerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParentRange path: Common/FrameProfilerUtil.cs startLine: 36 diff --git a/api/Vintagestory.API.Common.RecipeBase-1.yml b/api/Vintagestory.API.Common.RecipeBase-1.yml index af8002bc..189730a3 100644 --- a/api/Vintagestory.API.Common.RecipeBase-1.yml +++ b/api/Vintagestory.API.Common.RecipeBase-1.yml @@ -24,8 +24,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/RecipeBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RecipeBase path: Common/Crafting/RecipeBase.cs startLine: 35 @@ -71,8 +71,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/RecipeBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RecipeId path: Common/Crafting/RecipeBase.cs startLine: 37 @@ -100,8 +100,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/RecipeBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Ingredients path: Common/Crafting/RecipeBase.cs startLine: 42 @@ -131,8 +131,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/RecipeBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Ingredient path: Common/Crafting/RecipeBase.cs startLine: 44 @@ -162,8 +162,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/RecipeBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Output path: Common/Crafting/RecipeBase.cs startLine: 50 @@ -191,8 +191,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/RecipeBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Name path: Common/Crafting/RecipeBase.cs startLine: 52 @@ -225,8 +225,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/RecipeBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Enabled path: Common/Crafting/RecipeBase.cs startLine: 53 @@ -259,8 +259,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/RecipeBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Crafting/RecipeBase.cs startLine: 58 @@ -292,8 +292,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/RecipeBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetNameToCodeMapping path: Common/Crafting/RecipeBase.cs startLine: 59 @@ -328,8 +328,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/RecipeBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Resolve path: Common/Crafting/RecipeBase.cs startLine: 60 diff --git a/api/Vintagestory.API.Common.RecipeRegistryBase.yml b/api/Vintagestory.API.Common.RecipeRegistryBase.yml index 2e3a1ad7..ea9fcdca 100644 --- a/api/Vintagestory.API.Common.RecipeRegistryBase.yml +++ b/api/Vintagestory.API.Common.RecipeRegistryBase.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/RecipeRegistry.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RecipeRegistryBase path: Common/Crafting/RecipeRegistry.cs startLine: 52 @@ -54,8 +54,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/RecipeRegistry.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Common/Crafting/RecipeRegistry.cs startLine: 54 @@ -90,8 +90,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/RecipeRegistry.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Crafting/RecipeRegistry.cs startLine: 56 diff --git a/api/Vintagestory.API.Common.RecipeRegistryGeneric-1.yml b/api/Vintagestory.API.Common.RecipeRegistryGeneric-1.yml index 90459f5d..ddf19746 100644 --- a/api/Vintagestory.API.Common.RecipeRegistryGeneric-1.yml +++ b/api/Vintagestory.API.Common.RecipeRegistryGeneric-1.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/RecipeRegistry.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RecipeRegistryGeneric path: Common/Crafting/RecipeRegistry.cs startLine: 5 @@ -61,8 +61,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/RecipeRegistry.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Recipes path: Common/Crafting/RecipeRegistry.cs startLine: 7 @@ -90,8 +90,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/RecipeRegistry.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Crafting/RecipeRegistry.cs startLine: 9 @@ -119,8 +119,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/RecipeRegistry.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Crafting/RecipeRegistry.cs startLine: 14 @@ -151,8 +151,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/RecipeRegistry.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Crafting/RecipeRegistry.cs startLine: 19 @@ -189,8 +189,8 @@ items: source: remote: path: VintagestoryApi/Common/Crafting/RecipeRegistry.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Common/Crafting/RecipeRegistry.cs startLine: 34 diff --git a/api/Vintagestory.API.Common.RegistryObject.yml b/api/Vintagestory.API.Common.RegistryObject.yml index 5c78f936..9967711c 100644 --- a/api/Vintagestory.API.Common.RegistryObject.yml +++ b/api/Vintagestory.API.Common.RegistryObject.yml @@ -38,8 +38,8 @@ items: source: remote: path: VintagestoryApi/Common/Registry/RegistryObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegistryObject path: Common/Registry/RegistryObject.cs startLine: 12 @@ -78,8 +78,8 @@ items: source: remote: path: VintagestoryApi/Common/Registry/RegistryObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Common/Registry/RegistryObject.cs startLine: 17 @@ -107,8 +107,8 @@ items: source: remote: path: VintagestoryApi/Common/Registry/RegistryObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VariantStrict path: Common/Registry/RegistryObject.cs startLine: 22 @@ -136,8 +136,8 @@ items: source: remote: path: VintagestoryApi/Common/Registry/RegistryObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Variant path: Common/Registry/RegistryObject.cs startLine: 27 @@ -165,8 +165,8 @@ items: source: remote: path: VintagestoryApi/Common/Registry/RegistryObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Class path: Common/Registry/RegistryObject.cs startLine: 32 @@ -194,8 +194,8 @@ items: source: remote: path: VintagestoryApi/Common/Registry/RegistryObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Registry/RegistryObject.cs startLine: 35 @@ -223,8 +223,8 @@ items: source: remote: path: VintagestoryApi/Common/Registry/RegistryObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CodeWithPath path: Common/Registry/RegistryObject.cs startLine: 45 @@ -261,8 +261,8 @@ items: source: remote: path: VintagestoryApi/Common/Registry/RegistryObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CodeWithoutParts path: Common/Registry/RegistryObject.cs startLine: 55 @@ -299,8 +299,8 @@ items: source: remote: path: VintagestoryApi/Common/Registry/RegistryObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CodeEndWithoutParts path: Common/Registry/RegistryObject.cs startLine: 77 @@ -337,8 +337,8 @@ items: source: remote: path: VintagestoryApi/Common/Registry/RegistryObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CodeWithParts path: Common/Registry/RegistryObject.cs startLine: 99 @@ -375,8 +375,8 @@ items: source: remote: path: VintagestoryApi/Common/Registry/RegistryObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CodeWithParts path: Common/Registry/RegistryObject.cs startLine: 112 @@ -412,8 +412,8 @@ items: source: remote: path: VintagestoryApi/Common/Registry/RegistryObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CodeWithVariant path: Common/Registry/RegistryObject.cs startLine: 119 @@ -448,8 +448,8 @@ items: source: remote: path: VintagestoryApi/Common/Registry/RegistryObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CodeWithVariants path: Common/Registry/RegistryObject.cs startLine: 140 @@ -482,8 +482,8 @@ items: source: remote: path: VintagestoryApi/Common/Registry/RegistryObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CodeWithVariants path: Common/Registry/RegistryObject.cs startLine: 163 @@ -518,8 +518,8 @@ items: source: remote: path: VintagestoryApi/Common/Registry/RegistryObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CodeWithPart path: Common/Registry/RegistryObject.cs startLine: 193 @@ -559,8 +559,8 @@ items: source: remote: path: VintagestoryApi/Common/Registry/RegistryObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LastCodePart path: Common/Registry/RegistryObject.cs startLine: 211 @@ -597,8 +597,8 @@ items: source: remote: path: VintagestoryApi/Common/Registry/RegistryObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FirstCodePart path: Common/Registry/RegistryObject.cs startLine: 225 @@ -635,8 +635,8 @@ items: source: remote: path: VintagestoryApi/Common/Registry/RegistryObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WildCardMatch path: Common/Registry/RegistryObject.cs startLine: 239 @@ -673,8 +673,8 @@ items: source: remote: path: VintagestoryApi/Common/Registry/RegistryObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WildCardMatch path: Common/Registry/RegistryObject.cs startLine: 254 @@ -708,8 +708,8 @@ items: source: remote: path: VintagestoryApi/Common/Registry/RegistryObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WildCardMatch path: Common/Registry/RegistryObject.cs startLine: 265 @@ -746,8 +746,8 @@ items: source: remote: path: VintagestoryApi/Common/Registry/RegistryObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WildCardMatch path: Common/Registry/RegistryObject.cs startLine: 280 @@ -784,8 +784,8 @@ items: source: remote: path: VintagestoryApi/Common/Registry/RegistryObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FillPlaceHolder path: Common/Registry/RegistryObject.cs startLine: 292 @@ -825,8 +825,8 @@ items: source: remote: path: VintagestoryApi/Common/Registry/RegistryObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FillPlaceHolder path: Common/Registry/RegistryObject.cs startLine: 308 @@ -866,8 +866,8 @@ items: source: remote: path: VintagestoryApi/Common/Registry/RegistryObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FillPlaceHolder path: Common/Registry/RegistryObject.cs startLine: 325 diff --git a/api/Vintagestory.API.Common.ResumeServerDelegate.yml b/api/Vintagestory.API.Common.ResumeServerDelegate.yml index 125ce845..611915cf 100644 --- a/api/Vintagestory.API.Common.ResumeServerDelegate.yml +++ b/api/Vintagestory.API.Common.ResumeServerDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ResumeServerDelegate path: Common/API/Delegates.cs startLine: 155 diff --git a/api/Vintagestory.API.Common.RunningAnimation.yml b/api/Vintagestory.API.Common.RunningAnimation.yml index d34a5d7b..7ccd9a1b 100644 --- a/api/Vintagestory.API.Common.RunningAnimation.yml +++ b/api/Vintagestory.API.Common.RunningAnimation.yml @@ -31,8 +31,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/RunningAnimation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RunningAnimation path: Common/Model/Animation/RunningAnimation.cs startLine: 13 @@ -66,8 +66,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/RunningAnimation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: meta path: Common/Model/Animation/RunningAnimation.cs startLine: 15 @@ -93,8 +93,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/RunningAnimation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentFrame path: Common/Model/Animation/RunningAnimation.cs startLine: 17 @@ -120,8 +120,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/RunningAnimation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Animation path: Common/Model/Animation/RunningAnimation.cs startLine: 18 @@ -147,8 +147,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/RunningAnimation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Active path: Common/Model/Animation/RunningAnimation.cs startLine: 19 @@ -174,8 +174,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/RunningAnimation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Running path: Common/Model/Animation/RunningAnimation.cs startLine: 20 @@ -201,8 +201,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/RunningAnimation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Iterations path: Common/Model/Animation/RunningAnimation.cs startLine: 21 @@ -228,8 +228,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/RunningAnimation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldRewind path: Common/Model/Animation/RunningAnimation.cs startLine: 23 @@ -255,8 +255,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/RunningAnimation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldPlayTillEnd path: Common/Model/Animation/RunningAnimation.cs startLine: 24 @@ -282,8 +282,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/RunningAnimation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EasingFactor path: Common/Model/Animation/RunningAnimation.cs startLine: 26 @@ -309,8 +309,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/RunningAnimation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlendedWeight path: Common/Model/Animation/RunningAnimation.cs startLine: 27 @@ -336,8 +336,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/RunningAnimation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ElementWeights path: Common/Model/Animation/RunningAnimation.cs startLine: 29 @@ -363,8 +363,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/RunningAnimation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AnimProgress path: Common/Model/Animation/RunningAnimation.cs startLine: 31 @@ -392,8 +392,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/RunningAnimation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadWeights path: Common/Model/Animation/RunningAnimation.cs startLine: 33 @@ -424,8 +424,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/RunningAnimation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Progress path: Common/Model/Animation/RunningAnimation.cs startLine: 85 @@ -458,8 +458,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/RunningAnimation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Stop path: Common/Model/Animation/RunningAnimation.cs startLine: 151 @@ -484,8 +484,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/RunningAnimation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EaseOut path: Common/Model/Animation/RunningAnimation.cs startLine: 160 diff --git a/api/Vintagestory.API.Common.SQLiteDBConnection.yml b/api/Vintagestory.API.Common.SQLiteDBConnection.yml index c857e96b..855d045c 100644 --- a/api/Vintagestory.API.Common.SQLiteDBConnection.yml +++ b/api/Vintagestory.API.Common.SQLiteDBConnection.yml @@ -32,8 +32,8 @@ items: source: remote: path: VintagestoryApi/Common/IO/SQLiteDBConnection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SQLiteDBConnection path: Common/IO/SQLiteDBConnection.cs startLine: 8 @@ -69,8 +69,8 @@ items: source: remote: path: VintagestoryApi/Common/IO/SQLiteDBConnection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: sqliteConn path: Common/IO/SQLiteDBConnection.cs startLine: 10 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Common/IO/SQLiteDBConnection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: databaseFileName path: Common/IO/SQLiteDBConnection.cs startLine: 11 @@ -123,8 +123,8 @@ items: source: remote: path: VintagestoryApi/Common/IO/SQLiteDBConnection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: logger path: Common/IO/SQLiteDBConnection.cs startLine: 12 @@ -150,8 +150,8 @@ items: source: remote: path: VintagestoryApi/Common/IO/SQLiteDBConnection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: transactionLock path: Common/IO/SQLiteDBConnection.cs startLine: 13 @@ -177,8 +177,8 @@ items: source: remote: path: VintagestoryApi/Common/IO/SQLiteDBConnection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DBTypeCode path: Common/IO/SQLiteDBConnection.cs startLine: 15 @@ -206,8 +206,8 @@ items: source: remote: path: VintagestoryApi/Common/IO/SQLiteDBConnection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsReadOnly path: Common/IO/SQLiteDBConnection.cs startLine: 16 @@ -235,8 +235,8 @@ items: source: remote: path: VintagestoryApi/Common/IO/SQLiteDBConnection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/IO/SQLiteDBConnection.cs startLine: 18 @@ -267,8 +267,8 @@ items: source: remote: path: VintagestoryApi/Common/IO/SQLiteDBConnection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OpenOrCreate path: Common/IO/SQLiteDBConnection.cs startLine: 23 @@ -309,8 +309,8 @@ items: source: remote: path: VintagestoryApi/Common/IO/SQLiteDBConnection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnOpened path: Common/IO/SQLiteDBConnection.cs startLine: 100 @@ -335,8 +335,8 @@ items: source: remote: path: VintagestoryApi/Common/IO/SQLiteDBConnection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Close path: Common/IO/SQLiteDBConnection.cs startLine: 106 @@ -361,8 +361,8 @@ items: source: remote: path: VintagestoryApi/Common/IO/SQLiteDBConnection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Common/IO/SQLiteDBConnection.cs startLine: 112 @@ -391,8 +391,8 @@ items: source: remote: path: VintagestoryApi/Common/IO/SQLiteDBConnection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateTablesIfNotExists path: Common/IO/SQLiteDBConnection.cs startLine: 118 @@ -420,8 +420,8 @@ items: source: remote: path: VintagestoryApi/Common/IO/SQLiteDBConnection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Vacuum path: Common/IO/SQLiteDBConnection.cs startLine: 123 @@ -446,8 +446,8 @@ items: source: remote: path: VintagestoryApi/Common/IO/SQLiteDBConnection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DoIntegrityCheck path: Common/IO/SQLiteDBConnection.cs startLine: 133 @@ -482,8 +482,8 @@ items: source: remote: path: VintagestoryApi/Common/IO/SQLiteDBConnection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HaveWriteAccessFolder path: Common/IO/SQLiteDBConnection.cs startLine: 162 @@ -516,8 +516,8 @@ items: source: remote: path: VintagestoryApi/Common/IO/SQLiteDBConnection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HaveWriteAccessFile path: Common/IO/SQLiteDBConnection.cs startLine: 183 @@ -547,8 +547,8 @@ items: source: remote: path: VintagestoryApi/Common/IO/SQLiteDBConnection.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateParameter path: Common/IO/SQLiteDBConnection.cs startLine: 213 diff --git a/api/Vintagestory.API.Common.SelectedHotbarSlotDelegate.yml b/api/Vintagestory.API.Common.SelectedHotbarSlotDelegate.yml index d6d1e391..ebd49954 100644 --- a/api/Vintagestory.API.Common.SelectedHotbarSlotDelegate.yml +++ b/api/Vintagestory.API.Common.SelectedHotbarSlotDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SelectedHotbarSlotDelegate path: Common/API/Delegates.cs startLine: 104 diff --git a/api/Vintagestory.API.Common.ServerAnimator.yml b/api/Vintagestory.API.Common.ServerAnimator.yml index 246e40d2..152eb3eb 100644 --- a/api/Vintagestory.API.Common.ServerAnimator.yml +++ b/api/Vintagestory.API.Common.ServerAnimator.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ServerAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ServerAnimator path: Common/Model/Animation/ServerAnimator.cs startLine: 7 @@ -85,8 +85,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ServerAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: loadFully path: Common/Model/Animation/ServerAnimator.cs startLine: 9 @@ -112,8 +112,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ServerAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateForEntity path: Common/Model/Animation/ServerAnimator.cs startLine: 11 @@ -154,8 +154,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ServerAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateForEntity path: Common/Model/Animation/ServerAnimator.cs startLine: 37 @@ -194,8 +194,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ServerAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Model/Animation/ServerAnimator.cs startLine: 63 @@ -236,8 +236,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ServerAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Model/Animation/ServerAnimator.cs startLine: 75 @@ -280,8 +280,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/ServerAnimator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadPosesAndAttachmentPoints path: Common/Model/Animation/ServerAnimator.cs startLine: 86 diff --git a/api/Vintagestory.API.Common.ServerChatCommand.yml b/api/Vintagestory.API.Common.ServerChatCommand.yml index 85e020be..efcc01e7 100644 --- a/api/Vintagestory.API.Common.ServerChatCommand.yml +++ b/api/Vintagestory.API.Common.ServerChatCommand.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/Legacy/ChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ServerChatCommand path: Common/API/ChatCommand/Legacy/ChatCommand.cs startLine: 74 @@ -63,8 +63,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/Legacy/ChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: handler path: Common/API/ChatCommand/Legacy/ChatCommand.cs startLine: 76 @@ -90,8 +90,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/Legacy/ChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HasPrivilege path: Common/API/ChatCommand/Legacy/ChatCommand.cs startLine: 83 @@ -125,8 +125,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/Legacy/ChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CallHandler path: Common/API/ChatCommand/Legacy/ChatCommand.cs startLine: 88 diff --git a/api/Vintagestory.API.Common.ServerChatCommandDelegate.yml b/api/Vintagestory.API.Common.ServerChatCommandDelegate.yml index a2f48d2c..75ab77af 100644 --- a/api/Vintagestory.API.Common.ServerChatCommandDelegate.yml +++ b/api/Vintagestory.API.Common.ServerChatCommandDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/Legacy/ChatCommand.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ServerChatCommandDelegate path: Common/API/ChatCommand/Legacy/ChatCommand.cs startLine: 4 diff --git a/api/Vintagestory.API.Common.Shape.yml b/api/Vintagestory.API.Common.Shape.yml index f3cb42b3..2d2960f8 100644 --- a/api/Vintagestory.API.Common.Shape.yml +++ b/api/Vintagestory.API.Common.Shape.yml @@ -40,8 +40,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/Shape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Shape path: Common/Model/Shape/Shape.cs startLine: 13 @@ -89,8 +89,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/Shape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Textures path: Common/Model/Shape/Shape.cs startLine: 20 @@ -128,8 +128,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/Shape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Elements path: Common/Model/Shape/Shape.cs startLine: 26 @@ -167,8 +167,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/Shape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Animations path: Common/Model/Shape/Shape.cs startLine: 32 @@ -206,8 +206,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/Shape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AnimationsByCrc32 path: Common/Model/Shape/Shape.cs startLine: 34 @@ -233,8 +233,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/Shape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TextureWidth path: Common/Model/Shape/Shape.cs startLine: 40 @@ -272,8 +272,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/Shape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TextureHeight path: Common/Model/Shape/Shape.cs startLine: 46 @@ -311,8 +311,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/Shape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TextureSizes path: Common/Model/Shape/Shape.cs startLine: 49 @@ -348,8 +348,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/Shape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: JointsById path: Common/Model/Shape/Shape.cs startLine: 52 @@ -375,8 +375,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/Shape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AttachmentPointsByCode path: Common/Model/Shape/Shape.cs startLine: 53 @@ -402,8 +402,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/Shape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TrimTextureNamesAndResolveFaces path: Common/Model/Shape/Shape.cs startLine: 56 @@ -441,8 +441,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/Shape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ResolveReferences path: Common/Model/Shape/Shape.cs startLine: 67 @@ -479,8 +479,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/Shape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SubclassForStepParenting path: Common/Model/Shape/Shape.cs startLine: 111 @@ -520,8 +520,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/Shape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StepParentShape path: Common/Model/Shape/Shape.cs startLine: 162 @@ -576,8 +576,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/Shape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StepParentShape path: Common/Model/Shape/Shape.cs startLine: 177 @@ -626,8 +626,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/Shape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CollectElements path: Common/Model/Shape/Shape.cs startLine: 307 @@ -664,8 +664,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/Shape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ResolveAndLoadJoints path: Common/Model/Shape/Shape.cs startLine: 321 @@ -708,8 +708,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/Shape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ResolveAndFindJoints path: Common/Model/Shape/Shape.cs startLine: 333 @@ -749,8 +749,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/Shape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryGet path: Common/Model/Shape/Shape.cs startLine: 432 @@ -793,8 +793,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/Shape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryGet path: Common/Model/Shape/Shape.cs startLine: 454 @@ -834,8 +834,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/Shape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WalkElements path: Common/Model/Shape/Shape.cs startLine: 468 @@ -868,8 +868,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/Shape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetElementByName path: Common/Model/Shape/Shape.cs startLine: 510 @@ -909,8 +909,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/Shape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveElementByName path: Common/Model/Shape/Shape.cs startLine: 538 @@ -950,8 +950,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/Shape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CloneElements path: Common/Model/Shape/Shape.cs startLine: 572 @@ -978,8 +978,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/Shape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CloneAnimations path: Common/Model/Shape/Shape.cs startLine: 586 @@ -1006,8 +1006,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/Shape.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Model/Shape/Shape.cs startLine: 605 diff --git a/api/Vintagestory.API.Common.ShapeElement.yml b/api/Vintagestory.API.Common.ShapeElement.yml index 73ee1a24..7ff34303 100644 --- a/api/Vintagestory.API.Common.ShapeElement.yml +++ b/api/Vintagestory.API.Common.ShapeElement.yml @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShapeElement path: Common/Model/Shape/ShapeElement.cs startLine: 10 @@ -101,8 +101,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Logger path: Common/Model/Shape/ShapeElement.cs startLine: 16 @@ -130,8 +130,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: locationForLogging path: Common/Model/Shape/ShapeElement.cs startLine: 17 @@ -157,8 +157,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Name path: Common/Model/Shape/ShapeElement.cs startLine: 23 @@ -196,8 +196,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: From path: Common/Model/Shape/ShapeElement.cs startLine: 27 @@ -233,8 +233,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: To path: Common/Model/Shape/ShapeElement.cs startLine: 29 @@ -270,8 +270,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Shade path: Common/Model/Shape/ShapeElement.cs startLine: 35 @@ -309,8 +309,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GradientShade path: Common/Model/Shape/ShapeElement.cs startLine: 38 @@ -346,8 +346,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Faces path: Common/Model/Shape/ShapeElement.cs startLine: 45 @@ -394,8 +394,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FacesResolved path: Common/Model/Shape/ShapeElement.cs startLine: 49 @@ -423,8 +423,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotationOrigin path: Common/Model/Shape/ShapeElement.cs startLine: 55 @@ -462,8 +462,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotationX path: Common/Model/Shape/ShapeElement.cs startLine: 61 @@ -501,8 +501,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotationY path: Common/Model/Shape/ShapeElement.cs startLine: 67 @@ -540,8 +540,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotationZ path: Common/Model/Shape/ShapeElement.cs startLine: 73 @@ -579,8 +579,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ScaleX path: Common/Model/Shape/ShapeElement.cs startLine: 79 @@ -618,8 +618,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ScaleY path: Common/Model/Shape/ShapeElement.cs startLine: 85 @@ -657,8 +657,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ScaleZ path: Common/Model/Shape/ShapeElement.cs startLine: 91 @@ -696,8 +696,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClimateColorMap path: Common/Model/Shape/ShapeElement.cs startLine: 94 @@ -733,8 +733,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SeasonColorMap path: Common/Model/Shape/ShapeElement.cs startLine: 96 @@ -770,8 +770,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RenderPass path: Common/Model/Shape/ShapeElement.cs startLine: 98 @@ -807,8 +807,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ZOffset path: Common/Model/Shape/ShapeElement.cs startLine: 100 @@ -844,8 +844,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DisableRandomDrawOffset path: Common/Model/Shape/ShapeElement.cs startLine: 105 @@ -883,8 +883,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Children path: Common/Model/Shape/ShapeElement.cs startLine: 111 @@ -922,8 +922,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AttachmentPoints path: Common/Model/Shape/ShapeElement.cs startLine: 117 @@ -961,8 +961,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StepParentName path: Common/Model/Shape/ShapeElement.cs startLine: 123 @@ -1000,8 +1000,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParentElement path: Common/Model/Shape/ShapeElement.cs startLine: 128 @@ -1029,8 +1029,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: JointId path: Common/Model/Shape/ShapeElement.cs startLine: 133 @@ -1058,8 +1058,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Color path: Common/Model/Shape/ShapeElement.cs startLine: 138 @@ -1087,8 +1087,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DamageEffect path: Common/Model/Shape/ShapeElement.cs startLine: 140 @@ -1114,8 +1114,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: inverseModelTransform path: Common/Model/Shape/ShapeElement.cs startLine: 142 @@ -1141,8 +1141,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetParentPath path: Common/Model/Shape/ShapeElement.cs startLine: 148 @@ -1172,8 +1172,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CacheInverseTransformMatrix path: Common/Model/Shape/ShapeElement.cs startLine: 161 @@ -1198,8 +1198,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetInverseModelMatrix path: Common/Model/Shape/ShapeElement.cs startLine: 173 @@ -1229,8 +1229,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetLocalTransformMatrix path: Common/Model/Shape/ShapeElement.cs startLine: 256 @@ -1267,8 +1267,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Model/Shape/ShapeElement.cs startLine: 331 @@ -1295,8 +1295,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetJointIdRecursive path: Common/Model/Shape/ShapeElement.cs startLine: 373 @@ -1327,8 +1327,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CacheInverseTransformMatrixRecursive path: Common/Model/Shape/ShapeElement.cs startLine: 385 @@ -1353,8 +1353,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElement.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WalkRecursive path: Common/Model/Shape/ShapeElement.cs startLine: 398 diff --git a/api/Vintagestory.API.Common.ShapeElementFace.yml b/api/Vintagestory.API.Common.ShapeElementFace.yml index c72632e8..40fe15da 100644 --- a/api/Vintagestory.API.Common.ShapeElementFace.yml +++ b/api/Vintagestory.API.Common.ShapeElementFace.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElementFace.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShapeElementFace path: Common/Model/Shape/ShapeElementFace.cs startLine: 2 @@ -58,8 +58,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElementFace.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Texture path: Common/Model/Shape/ShapeElementFace.cs startLine: 7 @@ -87,8 +87,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElementFace.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Uv path: Common/Model/Shape/ShapeElementFace.cs startLine: 12 @@ -116,8 +116,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElementFace.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReflectiveMode path: Common/Model/Shape/ShapeElementFace.cs startLine: 14 @@ -143,8 +143,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElementFace.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WindMode path: Common/Model/Shape/ShapeElementFace.cs startLine: 16 @@ -170,8 +170,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElementFace.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WindData path: Common/Model/Shape/ShapeElementFace.cs startLine: 18 @@ -197,8 +197,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElementFace.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rotation path: Common/Model/Shape/ShapeElementFace.cs startLine: 23 @@ -226,8 +226,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElementFace.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Glow path: Common/Model/Shape/ShapeElementFace.cs startLine: 28 @@ -255,8 +255,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Shape/ShapeElementFace.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Enabled path: Common/Model/Shape/ShapeElementFace.cs startLine: 33 diff --git a/api/Vintagestory.API.Common.ShapeElementWeights.yml b/api/Vintagestory.API.Common.ShapeElementWeights.yml index 5d25b79b..f27d9a94 100644 --- a/api/Vintagestory.API.Common.ShapeElementWeights.yml +++ b/api/Vintagestory.API.Common.ShapeElementWeights.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/RunningAnimation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShapeElementWeights path: Common/Model/Animation/RunningAnimation.cs startLine: 6 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/RunningAnimation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Weight path: Common/Model/Animation/RunningAnimation.cs startLine: 8 @@ -80,8 +80,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/RunningAnimation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlendMode path: Common/Model/Animation/RunningAnimation.cs startLine: 9 @@ -107,8 +107,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/RunningAnimation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChildElements path: Common/Model/Animation/RunningAnimation.cs startLine: 10 diff --git a/api/Vintagestory.API.Common.SimpleParticleProperties.yml b/api/Vintagestory.API.Common.SimpleParticleProperties.yml index 8336b843..765203c6 100644 --- a/api/Vintagestory.API.Common.SimpleParticleProperties.yml +++ b/api/Vintagestory.API.Common.SimpleParticleProperties.yml @@ -75,8 +75,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SimpleParticleProperties path: Common/Particle/SimpleParticleProperties.cs startLine: 12 @@ -114,8 +114,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: randTL path: Common/Particle/SimpleParticleProperties.cs startLine: 14 @@ -141,8 +141,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: rand path: Common/Particle/SimpleParticleProperties.cs startLine: 15 @@ -170,8 +170,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinQuantity path: Common/Particle/SimpleParticleProperties.cs startLine: 18 @@ -197,8 +197,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddQuantity path: Common/Particle/SimpleParticleProperties.cs startLine: 19 @@ -224,8 +224,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WindAffectednes path: Common/Particle/SimpleParticleProperties.cs startLine: 20 @@ -251,8 +251,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinPos path: Common/Particle/SimpleParticleProperties.cs startLine: 22 @@ -278,8 +278,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddPos path: Common/Particle/SimpleParticleProperties.cs startLine: 23 @@ -305,8 +305,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinVelocity path: Common/Particle/SimpleParticleProperties.cs startLine: 24 @@ -332,8 +332,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddVelocity path: Common/Particle/SimpleParticleProperties.cs startLine: 25 @@ -359,8 +359,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParentVelocity path: Common/Particle/SimpleParticleProperties.cs startLine: 26 @@ -391,8 +391,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParentVelocityWeight path: Common/Particle/SimpleParticleProperties.cs startLine: 27 @@ -423,8 +423,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LifeLength path: Common/Particle/SimpleParticleProperties.cs startLine: 29 @@ -450,8 +450,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: addLifeLength path: Common/Particle/SimpleParticleProperties.cs startLine: 30 @@ -477,8 +477,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GravityEffect path: Common/Particle/SimpleParticleProperties.cs startLine: 31 @@ -511,8 +511,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinSize path: Common/Particle/SimpleParticleProperties.cs startLine: 33 @@ -538,8 +538,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxSize path: Common/Particle/SimpleParticleProperties.cs startLine: 34 @@ -565,8 +565,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Color path: Common/Particle/SimpleParticleProperties.cs startLine: 36 @@ -592,8 +592,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VertexFlags path: Common/Particle/SimpleParticleProperties.cs startLine: 37 @@ -626,8 +626,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Async path: Common/Particle/SimpleParticleProperties.cs startLine: 39 @@ -659,8 +659,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Bounciness path: Common/Particle/SimpleParticleProperties.cs startLine: 40 @@ -691,8 +691,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldDieInAir path: Common/Particle/SimpleParticleProperties.cs startLine: 41 @@ -720,8 +720,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldDieInLiquid path: Common/Particle/SimpleParticleProperties.cs startLine: 42 @@ -749,8 +749,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShouldSwimOnLiquid path: Common/Particle/SimpleParticleProperties.cs startLine: 43 @@ -778,8 +778,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WithTerrainCollision path: Common/Particle/SimpleParticleProperties.cs startLine: 44 @@ -807,8 +807,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OpacityEvolve path: Common/Particle/SimpleParticleProperties.cs startLine: 46 @@ -841,8 +841,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RedEvolve path: Common/Particle/SimpleParticleProperties.cs startLine: 47 @@ -875,8 +875,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GreenEvolve path: Common/Particle/SimpleParticleProperties.cs startLine: 48 @@ -909,8 +909,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlueEvolve path: Common/Particle/SimpleParticleProperties.cs startLine: 49 @@ -943,8 +943,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SizeEvolve path: Common/Particle/SimpleParticleProperties.cs startLine: 51 @@ -977,8 +977,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SelfPropelled path: Common/Particle/SimpleParticleProperties.cs startLine: 53 @@ -1004,8 +1004,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorByBlock path: Common/Particle/SimpleParticleProperties.cs startLine: 55 @@ -1031,8 +1031,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClimateColorMap path: Common/Particle/SimpleParticleProperties.cs startLine: 60 @@ -1060,8 +1060,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SeasonColorMap path: Common/Particle/SimpleParticleProperties.cs startLine: 65 @@ -1089,8 +1089,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RandomVelocityChange path: Common/Particle/SimpleParticleProperties.cs startLine: 68 @@ -1121,8 +1121,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Particle/SimpleParticleProperties.cs startLine: 70 @@ -1150,8 +1150,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Init path: Common/Particle/SimpleParticleProperties.cs startLine: 74 @@ -1184,8 +1184,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Particle/SimpleParticleProperties.cs startLine: 76 @@ -1238,8 +1238,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DieInAir path: Common/Particle/SimpleParticleProperties.cs startLine: 92 @@ -1272,8 +1272,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DieInLiquid path: Common/Particle/SimpleParticleProperties.cs startLine: 94 @@ -1306,8 +1306,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SwimOnLiquid path: Common/Particle/SimpleParticleProperties.cs startLine: 96 @@ -1338,8 +1338,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Quantity path: Common/Particle/SimpleParticleProperties.cs startLine: 98 @@ -1372,8 +1372,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: tmpPos path: Common/Particle/SimpleParticleProperties.cs startLine: 100 @@ -1399,8 +1399,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pos path: Common/Particle/SimpleParticleProperties.cs startLine: 101 @@ -1433,8 +1433,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetVelocity path: Common/Particle/SimpleParticleProperties.cs startLine: 117 @@ -1470,8 +1470,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Size path: Common/Particle/SimpleParticleProperties.cs startLine: 128 @@ -1504,8 +1504,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRgbaColor path: Common/Particle/SimpleParticleProperties.cs startLine: 130 @@ -1540,8 +1540,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParticleModel path: Common/Particle/SimpleParticleProperties.cs startLine: 145 @@ -1574,8 +1574,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UseLighting path: Common/Particle/SimpleParticleProperties.cs startLine: 147 @@ -1602,8 +1602,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VelocityEvolve path: Common/Particle/SimpleParticleProperties.cs startLine: 153 @@ -1636,8 +1636,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TerrainCollision path: Common/Particle/SimpleParticleProperties.cs startLine: 158 @@ -1670,8 +1670,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Common/Particle/SimpleParticleProperties.cs startLine: 162 @@ -1704,8 +1704,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Particle/SimpleParticleProperties.cs startLine: 210 @@ -1741,8 +1741,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeginParticle path: Common/Particle/SimpleParticleProperties.cs startLine: 276 @@ -1771,8 +1771,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SecondaryParticles path: Common/Particle/SimpleParticleProperties.cs startLine: 284 @@ -1805,8 +1805,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DeathParticles path: Common/Particle/SimpleParticleProperties.cs startLine: 285 @@ -1839,8 +1839,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SecondarySpawnInterval path: Common/Particle/SimpleParticleProperties.cs startLine: 286 @@ -1876,8 +1876,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DieOnRainHeightmap path: Common/Particle/SimpleParticleProperties.cs startLine: 288 @@ -1909,8 +1909,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WindAffected path: Common/Particle/SimpleParticleProperties.cs startLine: 289 @@ -1938,8 +1938,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PrepareForSecondarySpawn path: Common/Particle/SimpleParticleProperties.cs startLine: 293 @@ -1972,8 +1972,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/SimpleParticleProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Particle/SimpleParticleProperties.cs startLine: 301 diff --git a/api/Vintagestory.API.Common.SolarSphericalCoords.yml b/api/Vintagestory.API.Common.SolarSphericalCoords.yml index c0563a44..f71891aa 100644 --- a/api/Vintagestory.API.Common.SolarSphericalCoords.yml +++ b/api/Vintagestory.API.Common.SolarSphericalCoords.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SolarSphericalCoords path: Common/API/IGameCalendar.cs startLine: 97 @@ -50,8 +50,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ZenithAngle path: Common/API/IGameCalendar.cs startLine: 99 @@ -77,8 +77,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AzimuthAngle path: Common/API/IGameCalendar.cs startLine: 100 @@ -104,8 +104,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/IGameCalendar.cs startLine: 102 diff --git a/api/Vintagestory.API.Common.SolarSphericalCoordsDelegate.yml b/api/Vintagestory.API.Common.SolarSphericalCoordsDelegate.yml index abb0a7ec..a1d2e45b 100644 --- a/api/Vintagestory.API.Common.SolarSphericalCoordsDelegate.yml +++ b/api/Vintagestory.API.Common.SolarSphericalCoordsDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IGameCalendar.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SolarSphericalCoordsDelegate path: Common/API/IGameCalendar.cs startLine: 117 diff --git a/api/Vintagestory.API.Common.SourceStringComponents.yml b/api/Vintagestory.API.Common.SourceStringComponents.yml index 5edeeb56..4440ca52 100644 --- a/api/Vintagestory.API.Common.SourceStringComponents.yml +++ b/api/Vintagestory.API.Common.SourceStringComponents.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SourceStringComponents path: Common/Assets/AssetLocation.cs startLine: 25 @@ -50,8 +50,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Assets/AssetLocation.cs startLine: 35 @@ -90,8 +90,8 @@ items: source: remote: path: VintagestoryApi/Common/Assets/AssetLocation.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Common/Assets/AssetLocation.cs startLine: 43 diff --git a/api/Vintagestory.API.Common.StackCubeParticles.yml b/api/Vintagestory.API.Common.StackCubeParticles.yml index 5558d585..c1a31181 100644 --- a/api/Vintagestory.API.Common.StackCubeParticles.yml +++ b/api/Vintagestory.API.Common.StackCubeParticles.yml @@ -36,8 +36,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StackCubeParticles path: Common/Particle/BlockVoxelParticles.cs startLine: 116 @@ -100,8 +100,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: collisionPos path: Common/Particle/BlockVoxelParticles.cs startLine: 121 @@ -129,8 +129,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: stack path: Common/Particle/BlockVoxelParticles.cs startLine: 126 @@ -158,8 +158,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: quantity path: Common/Particle/BlockVoxelParticles.cs startLine: 131 @@ -187,8 +187,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: radius path: Common/Particle/BlockVoxelParticles.cs startLine: 136 @@ -216,8 +216,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: scale path: Common/Particle/BlockVoxelParticles.cs startLine: 141 @@ -245,8 +245,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: velocity path: Common/Particle/BlockVoxelParticles.cs startLine: 143 @@ -272,8 +272,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DieInLiquid path: Common/Particle/BlockVoxelParticles.cs startLine: 145 @@ -305,8 +305,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SwimOnLiquid path: Common/Particle/BlockVoxelParticles.cs startLine: 146 @@ -336,8 +336,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Particle/BlockVoxelParticles.cs startLine: 148 @@ -365,8 +365,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Particle/BlockVoxelParticles.cs startLine: 150 @@ -407,8 +407,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRgbaColor path: Common/Particle/BlockVoxelParticles.cs startLine: 160 @@ -442,8 +442,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pos path: Common/Particle/BlockVoxelParticles.cs startLine: 165 @@ -475,8 +475,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetVelocity path: Common/Particle/BlockVoxelParticles.cs startLine: 167 @@ -511,8 +511,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Size path: Common/Particle/BlockVoxelParticles.cs startLine: 179 @@ -544,8 +544,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParticleModel path: Common/Particle/BlockVoxelParticles.cs startLine: 181 @@ -577,8 +577,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Quantity path: Common/Particle/BlockVoxelParticles.cs startLine: 183 @@ -610,8 +610,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LifeLength path: Common/Particle/BlockVoxelParticles.cs startLine: 185 @@ -643,8 +643,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VertexFlags path: Common/Particle/BlockVoxelParticles.cs startLine: 187 @@ -676,8 +676,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SecondaryParticles path: Common/Particle/BlockVoxelParticles.cs startLine: 189 @@ -709,8 +709,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Common/Particle/BlockVoxelParticles.cs startLine: 190 @@ -742,8 +742,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/BlockVoxelParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Particle/BlockVoxelParticles.cs startLine: 201 diff --git a/api/Vintagestory.API.Common.StandardWorldProperty.yml b/api/Vintagestory.API.Common.StandardWorldProperty.yml index 5c860441..dd6264d5 100644 --- a/api/Vintagestory.API.Common.StandardWorldProperty.yml +++ b/api/Vintagestory.API.Common.StandardWorldProperty.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/Worldproperty/WorldProperty.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StandardWorldProperty path: Common/Worldproperty/WorldProperty.cs startLine: 14 diff --git a/api/Vintagestory.API.Common.StringArgParser.yml b/api/Vintagestory.API.Common.StringArgParser.yml index 16e7ae53..8995acaf 100644 --- a/api/Vintagestory.API.Common.StringArgParser.yml +++ b/api/Vintagestory.API.Common.StringArgParser.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StringArgParser path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 417 @@ -73,8 +73,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 421 @@ -107,8 +107,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 426 @@ -137,8 +137,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 431 @@ -173,8 +173,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 436 @@ -204,8 +204,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 442 diff --git a/api/Vintagestory.API.Common.StrongBlockBehavior.yml b/api/Vintagestory.API.Common.StrongBlockBehavior.yml index a2d96a35..2d66da1b 100644 --- a/api/Vintagestory.API.Common.StrongBlockBehavior.yml +++ b/api/Vintagestory.API.Common.StrongBlockBehavior.yml @@ -24,8 +24,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/StrongBlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StrongBlockBehavior path: Common/Collectible/Block/StrongBlockBehavior.cs startLine: 8 @@ -125,8 +125,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/StrongBlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Collectible/Block/StrongBlockBehavior.cs startLine: 10 @@ -157,8 +157,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/StrongBlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDecal path: Common/Collectible/Block/StrongBlockBehavior.cs startLine: 14 @@ -199,8 +199,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/StrongBlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetParticleCollisionBoxes path: Common/Collectible/Block/StrongBlockBehavior.cs startLine: 19 @@ -237,8 +237,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/StrongBlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCollisionBoxes path: Common/Collectible/Block/StrongBlockBehavior.cs startLine: 25 @@ -275,8 +275,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/StrongBlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSelectionBoxes path: Common/Collectible/Block/StrongBlockBehavior.cs startLine: 31 @@ -313,8 +313,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/StrongBlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetParticleBreakBox path: Common/Collectible/Block/StrongBlockBehavior.cs startLine: 37 @@ -353,8 +353,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/StrongBlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnDecalTesselation path: Common/Collectible/Block/StrongBlockBehavior.cs startLine: 43 @@ -391,8 +391,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/StrongBlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryPlaceBlockForWorldGen path: Common/Collectible/Block/StrongBlockBehavior.cs startLine: 48 @@ -433,8 +433,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/StrongBlockBehavior.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DoParticalSelection path: Common/Collectible/Block/StrongBlockBehavior.cs startLine: 55 diff --git a/api/Vintagestory.API.Common.SurfaceDrawImage.yml b/api/Vintagestory.API.Common.SurfaceDrawImage.yml index c0c17bad..fc142c34 100644 --- a/api/Vintagestory.API.Common.SurfaceDrawImage.yml +++ b/api/Vintagestory.API.Common.SurfaceDrawImage.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapExternal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SurfaceDrawImage path: Common/Texture/BitmapExternal.cs startLine: 10 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Common/Texture/BitmapExternal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Image path: Common/Texture/BitmapExternal.cs startLine: 12 diff --git a/api/Vintagestory.API.Common.SuspendServerDelegate.yml b/api/Vintagestory.API.Common.SuspendServerDelegate.yml index 4c5aa66f..2b6a8d9e 100644 --- a/api/Vintagestory.API.Common.SuspendServerDelegate.yml +++ b/api/Vintagestory.API.Common.SuspendServerDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SuspendServerDelegate path: Common/API/Delegates.cs startLine: 154 diff --git a/api/Vintagestory.API.Common.Tag2RichTextDelegate.yml b/api/Vintagestory.API.Common.Tag2RichTextDelegate.yml index 4ec243ec..8cccf9ce 100644 --- a/api/Vintagestory.API.Common.Tag2RichTextDelegate.yml +++ b/api/Vintagestory.API.Common.Tag2RichTextDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/VtmlParser.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Tag2RichTextDelegate path: Common/Text/VtmlParser.cs startLine: 21 diff --git a/api/Vintagestory.API.Common.TestBlockAccessDelegate.yml b/api/Vintagestory.API.Common.TestBlockAccessDelegate.yml index 63137f73..e20b546b 100644 --- a/api/Vintagestory.API.Common.TestBlockAccessDelegate.yml +++ b/api/Vintagestory.API.Common.TestBlockAccessDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/IEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TestBlockAccessDelegate path: Common/API/IEventAPI.cs startLine: 73 diff --git a/api/Vintagestory.API.Common.TextCommandCallingArgs.yml b/api/Vintagestory.API.Common.TextCommandCallingArgs.yml index b15e41c6..f2c9f72a 100644 --- a/api/Vintagestory.API.Common.TextCommandCallingArgs.yml +++ b/api/Vintagestory.API.Common.TextCommandCallingArgs.yml @@ -24,8 +24,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TextCommandCallingArgs path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 120 @@ -59,8 +59,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LanguageCode path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 122 @@ -86,8 +86,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Command path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 123 @@ -113,8 +113,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SubCmdCode path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 124 @@ -140,8 +140,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Caller path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 125 @@ -167,8 +167,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RawArgs path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 126 @@ -194,8 +194,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Parsers path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 127 @@ -221,8 +221,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ArgCount path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 129 @@ -250,8 +250,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 144 @@ -284,8 +284,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LastArg path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 148 diff --git a/api/Vintagestory.API.Common.TextCommandResult.yml b/api/Vintagestory.API.Common.TextCommandResult.yml index 56639826..630814f6 100644 --- a/api/Vintagestory.API.Common.TextCommandResult.yml +++ b/api/Vintagestory.API.Common.TextCommandResult.yml @@ -24,8 +24,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TextCommandResult path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 169 @@ -59,8 +59,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ErrorCode path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 171 @@ -86,8 +86,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StatusMessage path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 175 @@ -115,8 +115,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Status path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 176 @@ -142,8 +142,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Data path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 177 @@ -169,8 +169,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MessageParams path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 178 @@ -196,8 +196,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Success path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 180 @@ -232,8 +232,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Error path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 181 @@ -268,8 +268,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Deferred path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 183 @@ -297,8 +297,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/IChatCommandApi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DeferredHandler path: Common/API/ChatCommand/IChatCommandApi.cs startLine: 185 diff --git a/api/Vintagestory.API.Common.TransitionState.yml b/api/Vintagestory.API.Common.TransitionState.yml index eee8e4d6..d8c4c7cb 100644 --- a/api/Vintagestory.API.Common.TransitionState.yml +++ b/api/Vintagestory.API.Common.TransitionState.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/TransitionableProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TransitionState path: Common/Collectible/TransitionableProperties.cs startLine: 42 @@ -56,8 +56,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/TransitionableProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Props path: Common/Collectible/TransitionableProperties.cs startLine: 44 @@ -83,8 +83,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/TransitionableProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FreshHoursLeft path: Common/Collectible/TransitionableProperties.cs startLine: 46 @@ -110,8 +110,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/TransitionableProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TransitionLevel path: Common/Collectible/TransitionableProperties.cs startLine: 47 @@ -137,8 +137,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/TransitionableProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TransitionedHours path: Common/Collectible/TransitionableProperties.cs startLine: 49 @@ -164,8 +164,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/TransitionableProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TransitionHours path: Common/Collectible/TransitionableProperties.cs startLine: 51 @@ -191,8 +191,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/TransitionableProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FreshHours path: Common/Collectible/TransitionableProperties.cs startLine: 52 diff --git a/api/Vintagestory.API.Common.TransitionableProperties.yml b/api/Vintagestory.API.Common.TransitionableProperties.yml index dd1ba405..91cd5d25 100644 --- a/api/Vintagestory.API.Common.TransitionableProperties.yml +++ b/api/Vintagestory.API.Common.TransitionableProperties.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/TransitionableProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TransitionableProperties path: Common/Collectible/TransitionableProperties.cs startLine: 55 @@ -58,8 +58,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/TransitionableProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Type path: Common/Collectible/TransitionableProperties.cs startLine: 60 @@ -87,8 +87,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/TransitionableProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FreshHours path: Common/Collectible/TransitionableProperties.cs startLine: 65 @@ -116,8 +116,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/TransitionableProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TransitionHours path: Common/Collectible/TransitionableProperties.cs startLine: 70 @@ -145,8 +145,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/TransitionableProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TransitionedStack path: Common/Collectible/TransitionableProperties.cs startLine: 75 @@ -174,8 +174,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/TransitionableProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TransitionRatio path: Common/Collectible/TransitionableProperties.cs startLine: 80 @@ -203,8 +203,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/TransitionableProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Collectible/TransitionableProperties.cs startLine: 86 @@ -234,8 +234,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/TransitionableProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Common/Collectible/TransitionableProperties.cs startLine: 98 @@ -263,8 +263,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/TransitionableProperties.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Common/Collectible/TransitionableProperties.cs startLine: 107 diff --git a/api/Vintagestory.API.Common.TrySpawnEntityDelegate.yml b/api/Vintagestory.API.Common.TrySpawnEntityDelegate.yml index 686b2f76..194ac82b 100644 --- a/api/Vintagestory.API.Common.TrySpawnEntityDelegate.yml +++ b/api/Vintagestory.API.Common.TrySpawnEntityDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TrySpawnEntityDelegate path: Common/API/Delegates.cs startLine: 116 diff --git a/api/Vintagestory.API.Common.TyronThreadPool.yml b/api/Vintagestory.API.Common.TyronThreadPool.yml index 409f71fa..819e04a0 100644 --- a/api/Vintagestory.API.Common.TyronThreadPool.yml +++ b/api/Vintagestory.API.Common.TyronThreadPool.yml @@ -27,8 +27,8 @@ items: source: remote: path: VintagestoryApi/Common/TyronThreadPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TyronThreadPool path: Common/TyronThreadPool.cs startLine: 11 @@ -62,8 +62,8 @@ items: source: remote: path: VintagestoryApi/Common/TyronThreadPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Inst path: Common/TyronThreadPool.cs startLine: 16 @@ -89,8 +89,8 @@ items: source: remote: path: VintagestoryApi/Common/TyronThreadPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Logger path: Common/TyronThreadPool.cs startLine: 17 @@ -116,8 +116,8 @@ items: source: remote: path: VintagestoryApi/Common/TyronThreadPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RunningTasks path: Common/TyronThreadPool.cs startLine: 19 @@ -143,8 +143,8 @@ items: source: remote: path: VintagestoryApi/Common/TyronThreadPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DedicatedThreads path: Common/TyronThreadPool.cs startLine: 20 @@ -170,8 +170,8 @@ items: source: remote: path: VintagestoryApi/Common/TyronThreadPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ListAllRunningTasks path: Common/TyronThreadPool.cs startLine: 37 @@ -198,8 +198,8 @@ items: source: remote: path: VintagestoryApi/Common/TyronThreadPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ListAllThreads path: Common/TyronThreadPool.cs startLine: 51 @@ -226,8 +226,8 @@ items: source: remote: path: VintagestoryApi/Common/TyronThreadPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: QueueTask path: Common/TyronThreadPool.cs startLine: 95 @@ -260,8 +260,8 @@ items: source: remote: path: VintagestoryApi/Common/TyronThreadPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: QueueLongDurationTask path: Common/TyronThreadPool.cs startLine: 102 @@ -294,8 +294,8 @@ items: source: remote: path: VintagestoryApi/Common/TyronThreadPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: QueueTask path: Common/TyronThreadPool.cs startLine: 110 @@ -323,8 +323,8 @@ items: source: remote: path: VintagestoryApi/Common/TyronThreadPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: QueueLongDurationTask path: Common/TyronThreadPool.cs startLine: 123 @@ -352,8 +352,8 @@ items: source: remote: path: VintagestoryApi/Common/TyronThreadPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateDedicatedThread path: Common/TyronThreadPool.cs startLine: 137 @@ -388,8 +388,8 @@ items: source: remote: path: VintagestoryApi/Common/TyronThreadPool.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dispose path: Common/TyronThreadPool.cs startLine: 146 diff --git a/api/Vintagestory.API.Common.UnparsedArg.yml b/api/Vintagestory.API.Common.UnparsedArg.yml index cd0f38bf..26f9f86f 100644 --- a/api/Vintagestory.API.Common.UnparsedArg.yml +++ b/api/Vintagestory.API.Common.UnparsedArg.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UnparsedArg path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 387 @@ -73,8 +73,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 390 @@ -107,8 +107,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 396 @@ -137,8 +137,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValidRange path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 401 @@ -170,8 +170,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 406 @@ -206,8 +206,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 411 diff --git a/api/Vintagestory.API.Common.UpdateEntityDelegate.yml b/api/Vintagestory.API.Common.UpdateEntityDelegate.yml index b94e1543..10acc772 100644 --- a/api/Vintagestory.API.Common.UpdateEntityDelegate.yml +++ b/api/Vintagestory.API.Common.UpdateEntityDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UpdateEntityDelegate path: Common/API/Delegates.cs startLine: 106 diff --git a/api/Vintagestory.API.Common.UseEntityDelegate.yml b/api/Vintagestory.API.Common.UseEntityDelegate.yml index 449da411..ecf5117f 100644 --- a/api/Vintagestory.API.Common.UseEntityDelegate.yml +++ b/api/Vintagestory.API.Common.UseEntityDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UseEntityDelegate path: Common/API/Delegates.cs startLine: 108 diff --git a/api/Vintagestory.API.Common.Vec3iArgParser.yml b/api/Vintagestory.API.Common.Vec3iArgParser.yml index e53388f3..465472f3 100644 --- a/api/Vintagestory.API.Common.Vec3iArgParser.yml +++ b/api/Vintagestory.API.Common.Vec3iArgParser.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Vec3iArgParser path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1055 @@ -73,8 +73,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1059 @@ -109,8 +109,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1064 @@ -140,8 +140,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1070 @@ -182,8 +182,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1081 @@ -212,8 +212,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1086 diff --git a/api/Vintagestory.API.Common.VertexFlags.yml b/api/Vintagestory.API.Common.VertexFlags.yml index d5abab7d..5514d695 100644 --- a/api/Vintagestory.API.Common.VertexFlags.yml +++ b/api/Vintagestory.API.Common.VertexFlags.yml @@ -55,8 +55,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VertexFlags path: Common/Collectible/Block/VertexFlags.cs startLine: 122 @@ -118,8 +118,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GlowLevelBitMask path: Common/Collectible/Block/VertexFlags.cs startLine: 128 @@ -147,8 +147,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ZOffsetBitPos path: Common/Collectible/Block/VertexFlags.cs startLine: 130 @@ -174,8 +174,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ZOffsetBitMask path: Common/Collectible/Block/VertexFlags.cs startLine: 134 @@ -203,8 +203,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReflectiveBitMask path: Common/Collectible/Block/VertexFlags.cs startLine: 139 @@ -232,8 +232,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Lod0BitMask path: Common/Collectible/Block/VertexFlags.cs startLine: 143 @@ -261,8 +261,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NormalBitPos path: Common/Collectible/Block/VertexFlags.cs startLine: 145 @@ -288,8 +288,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NormalBitMask path: Common/Collectible/Block/VertexFlags.cs startLine: 149 @@ -317,8 +317,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WindModeBitsMask path: Common/Collectible/Block/VertexFlags.cs startLine: 154 @@ -346,8 +346,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WindModeBitsPos path: Common/Collectible/Block/VertexFlags.cs startLine: 156 @@ -373,8 +373,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WindDataBitsMask path: Common/Collectible/Block/VertexFlags.cs startLine: 162 @@ -405,8 +405,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WindDataBitsPos path: Common/Collectible/Block/VertexFlags.cs startLine: 164 @@ -432,8 +432,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WindBitsMask path: Common/Collectible/Block/VertexFlags.cs startLine: 169 @@ -461,8 +461,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LiquidWaterModeBitMask path: Common/Collectible/Block/VertexFlags.cs startLine: 173 @@ -488,8 +488,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LiquidExposedToSkyBitMask path: Common/Collectible/Block/VertexFlags.cs startLine: 175 @@ -515,8 +515,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClearWindBitsMask path: Common/Collectible/Block/VertexFlags.cs startLine: 179 @@ -542,8 +542,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClearWindModeBitsMask path: Common/Collectible/Block/VertexFlags.cs startLine: 180 @@ -569,8 +569,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClearWindDataBitsMask path: Common/Collectible/Block/VertexFlags.cs startLine: 181 @@ -596,8 +596,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClearZOffsetMask path: Common/Collectible/Block/VertexFlags.cs startLine: 182 @@ -623,8 +623,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClearNormalBitMask path: Common/Collectible/Block/VertexFlags.cs startLine: 183 @@ -650,8 +650,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: All path: Common/Collectible/Block/VertexFlags.cs startLine: 196 @@ -689,8 +689,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PackNormal path: Common/Collectible/Block/VertexFlags.cs startLine: 223 @@ -724,8 +724,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PackNormal path: Common/Collectible/Block/VertexFlags.cs startLine: 235 @@ -768,8 +768,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PackNormal path: Common/Collectible/Block/VertexFlags.cs startLine: 253 @@ -803,8 +803,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PackNormal path: Common/Collectible/Block/VertexFlags.cs startLine: 271 @@ -838,8 +838,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UnpackNormal path: Common/Collectible/Block/VertexFlags.cs startLine: 295 @@ -872,8 +872,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UnpackNormal path: Common/Collectible/Block/VertexFlags.cs startLine: 312 @@ -906,8 +906,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GlowLevel path: Common/Collectible/Block/VertexFlags.cs startLine: 330 @@ -945,8 +945,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ZOffset path: Common/Collectible/Block/VertexFlags.cs startLine: 344 @@ -984,8 +984,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Reflective path: Common/Collectible/Block/VertexFlags.cs startLine: 358 @@ -1023,8 +1023,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Lod0 path: Common/Collectible/Block/VertexFlags.cs startLine: 372 @@ -1062,8 +1062,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Normal path: Common/Collectible/Block/VertexFlags.cs startLine: 386 @@ -1101,8 +1101,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WindMode path: Common/Collectible/Block/VertexFlags.cs startLine: 400 @@ -1140,8 +1140,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WindData path: Common/Collectible/Block/VertexFlags.cs startLine: 414 @@ -1179,8 +1179,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Collectible/Block/VertexFlags.cs startLine: 424 @@ -1208,8 +1208,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Collectible/Block/VertexFlags.cs startLine: 429 @@ -1240,8 +1240,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Common/Collectible/Block/VertexFlags.cs startLine: 450 @@ -1271,8 +1271,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Common/Collectible/Block/VertexFlags.cs startLine: 455 @@ -1303,8 +1303,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetWindMode path: Common/Collectible/Block/VertexFlags.cs startLine: 463 @@ -1337,8 +1337,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetWindData path: Common/Collectible/Block/VertexFlags.cs startLine: 468 @@ -1371,8 +1371,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/VertexFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReplaceWindData path: Common/Collectible/Block/VertexFlags.cs startLine: 473 diff --git a/api/Vintagestory.API.Common.VtmlParser.ParseState.yml b/api/Vintagestory.API.Common.VtmlParser.ParseState.yml index 234bf149..21db6489 100644 --- a/api/Vintagestory.API.Common.VtmlParser.ParseState.yml +++ b/api/Vintagestory.API.Common.VtmlParser.ParseState.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/VtmlParser.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParseState path: Common/Text/VtmlParser.cs startLine: 502 @@ -46,8 +46,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/VtmlParser.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SeekKey path: Common/Text/VtmlParser.cs startLine: 502 @@ -72,8 +72,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/VtmlParser.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParseTagName path: Common/Text/VtmlParser.cs startLine: 502 @@ -98,8 +98,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/VtmlParser.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParseKey path: Common/Text/VtmlParser.cs startLine: 502 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/VtmlParser.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SeekValue path: Common/Text/VtmlParser.cs startLine: 502 @@ -150,8 +150,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/VtmlParser.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParseQuotedValue path: Common/Text/VtmlParser.cs startLine: 502 @@ -176,8 +176,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/VtmlParser.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ParseValue path: Common/Text/VtmlParser.cs startLine: 502 diff --git a/api/Vintagestory.API.Common.VtmlParser.yml b/api/Vintagestory.API.Common.VtmlParser.yml index 85c269a6..920da8fd 100644 --- a/api/Vintagestory.API.Common.VtmlParser.yml +++ b/api/Vintagestory.API.Common.VtmlParser.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/VtmlParser.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VtmlParser path: Common/Text/VtmlParser.cs startLine: 352 @@ -51,8 +51,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/VtmlParser.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Tokenize path: Common/Text/VtmlParser.cs startLine: 354 diff --git a/api/Vintagestory.API.Common.VtmlTagToken.yml b/api/Vintagestory.API.Common.VtmlTagToken.yml index e8a32aef..8776abcd 100644 --- a/api/Vintagestory.API.Common.VtmlTagToken.yml +++ b/api/Vintagestory.API.Common.VtmlTagToken.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/VtmlParser.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VtmlTagToken path: Common/Text/VtmlParser.cs startLine: 614 @@ -56,8 +56,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/VtmlParser.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChildElements path: Common/Text/VtmlParser.cs startLine: 616 @@ -85,8 +85,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/VtmlParser.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Name path: Common/Text/VtmlParser.cs startLine: 621 @@ -116,8 +116,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/VtmlParser.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Attributes path: Common/Text/VtmlParser.cs startLine: 626 @@ -147,8 +147,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/VtmlParser.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ContentText path: Common/Text/VtmlParser.cs startLine: 629 diff --git a/api/Vintagestory.API.Common.VtmlTextToken.yml b/api/Vintagestory.API.Common.VtmlTextToken.yml index 5226fb95..007e6709 100644 --- a/api/Vintagestory.API.Common.VtmlTextToken.yml +++ b/api/Vintagestory.API.Common.VtmlTextToken.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/VtmlParser.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VtmlTextToken path: Common/Text/VtmlParser.cs startLine: 649 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/VtmlParser.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Text path: Common/Text/VtmlParser.cs startLine: 651 diff --git a/api/Vintagestory.API.Common.VtmlToken.yml b/api/Vintagestory.API.Common.VtmlToken.yml index 38bb15d3..61f8b4cc 100644 --- a/api/Vintagestory.API.Common.VtmlToken.yml +++ b/api/Vintagestory.API.Common.VtmlToken.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/VtmlParser.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VtmlToken path: Common/Text/VtmlParser.cs startLine: 654 @@ -54,8 +54,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/VtmlParser.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartPosition path: Common/Text/VtmlParser.cs startLine: 656 diff --git a/api/Vintagestory.API.Common.VtmlUtil.yml b/api/Vintagestory.API.Common.VtmlUtil.yml index a554eff1..4b2bda3e 100644 --- a/api/Vintagestory.API.Common.VtmlUtil.yml +++ b/api/Vintagestory.API.Common.VtmlUtil.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/VtmlParser.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VtmlUtil path: Common/Text/VtmlParser.cs startLine: 31 @@ -54,8 +54,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/VtmlParser.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TagConverters path: Common/Text/VtmlParser.cs startLine: 36 @@ -83,8 +83,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/VtmlParser.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Richtextify path: Common/Text/VtmlParser.cs startLine: 40 @@ -123,8 +123,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/VtmlParser.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: parseHexColor path: Common/Text/VtmlParser.cs startLine: 323 @@ -159,8 +159,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/VtmlParser.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: toHexColor path: Common/Text/VtmlParser.cs startLine: 345 diff --git a/api/Vintagestory.API.Common.VtmlUtilApiAdditions.yml b/api/Vintagestory.API.Common.VtmlUtilApiAdditions.yml index 5d558b87..ab26679d 100644 --- a/api/Vintagestory.API.Common.VtmlUtilApiAdditions.yml +++ b/api/Vintagestory.API.Common.VtmlUtilApiAdditions.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/VtmlParser.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VtmlUtilApiAdditions path: Common/Text/VtmlParser.cs startLine: 23 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Common/Text/VtmlParser.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterVtmlTagConverter path: Common/Text/VtmlParser.cs startLine: 25 diff --git a/api/Vintagestory.API.Common.WalkSpeedSupplierDelegate.yml b/api/Vintagestory.API.Common.WalkSpeedSupplierDelegate.yml index 4bb7e99b..9147ccee 100644 --- a/api/Vintagestory.API.Common.WalkSpeedSupplierDelegate.yml +++ b/api/Vintagestory.API.Common.WalkSpeedSupplierDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/Model/Animation/AnimatorBase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WalkSpeedSupplierDelegate path: Common/Model/Animation/AnimatorBase.cs startLine: 7 diff --git a/api/Vintagestory.API.Common.WaterSplashParticles.yml b/api/Vintagestory.API.Common.WaterSplashParticles.yml index 7809be20..5fb16bab 100644 --- a/api/Vintagestory.API.Common.WaterSplashParticles.yml +++ b/api/Vintagestory.API.Common.WaterSplashParticles.yml @@ -30,8 +30,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WaterSplashParticles path: Common/Particle/WaterSplashParticles.cs startLine: 58 @@ -92,8 +92,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BasePos path: Common/Particle/WaterSplashParticles.cs startLine: 61 @@ -119,8 +119,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddPos path: Common/Particle/WaterSplashParticles.cs startLine: 62 @@ -146,8 +146,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddVelocity path: Common/Particle/WaterSplashParticles.cs startLine: 64 @@ -173,8 +173,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: QuantityMul path: Common/Particle/WaterSplashParticles.cs startLine: 65 @@ -200,8 +200,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DieInLiquid path: Common/Particle/WaterSplashParticles.cs startLine: 67 @@ -233,8 +233,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GravityEffect path: Common/Particle/WaterSplashParticles.cs startLine: 67 @@ -266,8 +266,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LifeLength path: Common/Particle/WaterSplashParticles.cs startLine: 67 @@ -299,8 +299,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SwimOnLiquid path: Common/Particle/WaterSplashParticles.cs startLine: 67 @@ -330,8 +330,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pos path: Common/Particle/WaterSplashParticles.cs startLine: 68 @@ -363,8 +363,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Quantity path: Common/Particle/WaterSplashParticles.cs startLine: 70 @@ -396,8 +396,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRgbaColor path: Common/Particle/WaterSplashParticles.cs startLine: 72 @@ -432,8 +432,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Size path: Common/Particle/WaterSplashParticles.cs startLine: 77 @@ -465,8 +465,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SizeEvolve path: Common/Particle/WaterSplashParticles.cs startLine: 79 @@ -498,8 +498,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OpacityEvolve path: Common/Particle/WaterSplashParticles.cs startLine: 81 @@ -531,8 +531,8 @@ items: source: remote: path: VintagestoryApi/Common/Particle/WaterSplashParticles.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetVelocity path: Common/Particle/WaterSplashParticles.cs startLine: 83 diff --git a/api/Vintagestory.API.Common.WeightedSlot.yml b/api/Vintagestory.API.Common.WeightedSlot.yml index 3e8f28fc..070d6ca4 100644 --- a/api/Vintagestory.API.Common.WeightedSlot.yml +++ b/api/Vintagestory.API.Common.WeightedSlot.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/WeightedSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WeightedSlot path: Common/Inventory/WeightedSlot.cs startLine: 2 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/WeightedSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: slot path: Common/Inventory/WeightedSlot.cs startLine: 7 @@ -81,8 +81,8 @@ items: source: remote: path: VintagestoryApi/Common/Inventory/WeightedSlot.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: weight path: Common/Inventory/WeightedSlot.cs startLine: 12 diff --git a/api/Vintagestory.API.Common.WordArgParser.yml b/api/Vintagestory.API.Common.WordArgParser.yml index b7f57855..af02a700 100644 --- a/api/Vintagestory.API.Common.WordArgParser.yml +++ b/api/Vintagestory.API.Common.WordArgParser.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WordArgParser path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1092 @@ -73,8 +73,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1097 @@ -109,8 +109,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValidRange path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1102 @@ -142,8 +142,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1107 @@ -172,8 +172,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1112 @@ -208,8 +208,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSyntaxExplanation path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1117 @@ -244,8 +244,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1125 @@ -275,8 +275,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1131 diff --git a/api/Vintagestory.API.Common.WordRangeArgParser.yml b/api/Vintagestory.API.Common.WordRangeArgParser.yml index 7aa33f3f..352df51a 100644 --- a/api/Vintagestory.API.Common.WordRangeArgParser.yml +++ b/api/Vintagestory.API.Common.WordRangeArgParser.yml @@ -25,8 +25,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WordRangeArgParser path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1144 @@ -74,8 +74,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: word path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1147 @@ -101,8 +101,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1149 @@ -137,8 +137,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSyntax path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1153 @@ -167,8 +167,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSyntaxUnformatted path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1158 @@ -197,8 +197,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSyntaxExplanation path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1163 @@ -233,8 +233,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValidRange path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1168 @@ -266,8 +266,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1173 @@ -296,8 +296,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1178 @@ -327,8 +327,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1184 @@ -369,8 +369,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1197 diff --git a/api/Vintagestory.API.Common.WorldConfigurationAttribute.yml b/api/Vintagestory.API.Common.WorldConfigurationAttribute.yml index bf0133b1..5b45747b 100644 --- a/api/Vintagestory.API.Common.WorldConfigurationAttribute.yml +++ b/api/Vintagestory.API.Common.WorldConfigurationAttribute.yml @@ -29,8 +29,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/WorldConfiguration.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WorldConfigurationAttribute path: Common/Playstyle/WorldConfiguration.cs startLine: 17 @@ -64,8 +64,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/WorldConfiguration.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DataType path: Common/Playstyle/WorldConfiguration.cs startLine: 19 @@ -91,8 +91,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/WorldConfiguration.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Category path: Common/Playstyle/WorldConfiguration.cs startLine: 21 @@ -118,8 +118,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/WorldConfiguration.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Common/Playstyle/WorldConfiguration.cs startLine: 22 @@ -145,8 +145,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/WorldConfiguration.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Min path: Common/Playstyle/WorldConfiguration.cs startLine: 23 @@ -172,8 +172,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/WorldConfiguration.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Max path: Common/Playstyle/WorldConfiguration.cs startLine: 24 @@ -199,8 +199,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/WorldConfiguration.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Step path: Common/Playstyle/WorldConfiguration.cs startLine: 25 @@ -226,8 +226,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/WorldConfiguration.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnCustomizeScreen path: Common/Playstyle/WorldConfiguration.cs startLine: 27 @@ -253,8 +253,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/WorldConfiguration.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Default path: Common/Playstyle/WorldConfiguration.cs startLine: 29 @@ -280,8 +280,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/WorldConfiguration.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Values path: Common/Playstyle/WorldConfiguration.cs startLine: 30 @@ -307,8 +307,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/WorldConfiguration.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Names path: Common/Playstyle/WorldConfiguration.cs startLine: 31 @@ -334,8 +334,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/WorldConfiguration.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnlyDuringWorldCreate path: Common/Playstyle/WorldConfiguration.cs startLine: 33 @@ -361,8 +361,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/WorldConfiguration.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: stringToValue path: Common/Playstyle/WorldConfiguration.cs startLine: 35 @@ -395,8 +395,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/WorldConfiguration.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: valueToHumanReadable path: Common/Playstyle/WorldConfiguration.cs startLine: 64 @@ -429,8 +429,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/WorldConfiguration.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TypedDefault path: Common/Playstyle/WorldConfiguration.cs startLine: 88 diff --git a/api/Vintagestory.API.Common.WorldConfigurationValue.yml b/api/Vintagestory.API.Common.WorldConfigurationValue.yml index bfd0ac08..175f9cae 100644 --- a/api/Vintagestory.API.Common.WorldConfigurationValue.yml +++ b/api/Vintagestory.API.Common.WorldConfigurationValue.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/WorldConfiguration.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WorldConfigurationValue path: Common/Playstyle/WorldConfiguration.cs startLine: 99 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/WorldConfiguration.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Attribute path: Common/Playstyle/WorldConfiguration.cs startLine: 101 @@ -80,8 +80,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/WorldConfiguration.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Common/Playstyle/WorldConfiguration.cs startLine: 102 @@ -107,8 +107,8 @@ items: source: remote: path: VintagestoryApi/Common/Playstyle/WorldConfiguration.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Value path: Common/Playstyle/WorldConfiguration.cs startLine: 103 diff --git a/api/Vintagestory.API.Common.WorldGenHookDelegate.yml b/api/Vintagestory.API.Common.WorldGenHookDelegate.yml index fcd7d60a..9718b4bd 100644 --- a/api/Vintagestory.API.Common.WorldGenHookDelegate.yml +++ b/api/Vintagestory.API.Common.WorldGenHookDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WorldGenHookDelegate path: Common/API/Delegates.cs startLine: 134 diff --git a/api/Vintagestory.API.Common.WorldGenThreadDelegate.yml b/api/Vintagestory.API.Common.WorldGenThreadDelegate.yml index 787abeec..74446bdb 100644 --- a/api/Vintagestory.API.Common.WorldGenThreadDelegate.yml +++ b/api/Vintagestory.API.Common.WorldGenThreadDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Common/API/Delegates.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WorldGenThreadDelegate path: Common/API/Delegates.cs startLine: 132 diff --git a/api/Vintagestory.API.Common.WorldPosition2DArgParser.yml b/api/Vintagestory.API.Common.WorldPosition2DArgParser.yml index 1c9bee61..d040f1ab 100644 --- a/api/Vintagestory.API.Common.WorldPosition2DArgParser.yml +++ b/api/Vintagestory.API.Common.WorldPosition2DArgParser.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WorldPosition2DArgParser path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 975 @@ -75,8 +75,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 981 @@ -111,8 +111,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValidRange path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 988 @@ -144,8 +144,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 993 @@ -174,8 +174,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 998 @@ -210,8 +210,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1003 @@ -241,8 +241,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 1014 diff --git a/api/Vintagestory.API.Common.WorldPositionArgParser.yml b/api/Vintagestory.API.Common.WorldPositionArgParser.yml index 9f530d6a..eea9a9ce 100644 --- a/api/Vintagestory.API.Common.WorldPositionArgParser.yml +++ b/api/Vintagestory.API.Common.WorldPositionArgParser.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WorldPositionArgParser path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 898 @@ -75,8 +75,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 904 @@ -111,8 +111,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSyntaxExplanation path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 910 @@ -147,8 +147,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValidRange path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 922 @@ -180,8 +180,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 927 @@ -210,8 +210,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 932 @@ -246,8 +246,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 937 @@ -277,8 +277,8 @@ items: source: remote: path: VintagestoryApi/Common/API/ChatCommand/CommandArgumentParsers.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryProcess path: Common/API/ChatCommand/CommandArgumentParsers.cs startLine: 943 diff --git a/api/Vintagestory.API.Common.WorldProperty-1.yml b/api/Vintagestory.API.Common.WorldProperty-1.yml index a71f6ca0..d3259541 100644 --- a/api/Vintagestory.API.Common.WorldProperty-1.yml +++ b/api/Vintagestory.API.Common.WorldProperty-1.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Common/Worldproperty/WorldProperty.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WorldProperty path: Common/Worldproperty/WorldProperty.cs startLine: 4 @@ -72,8 +72,8 @@ items: source: remote: path: VintagestoryApi/Common/Worldproperty/WorldProperty.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Common/Worldproperty/WorldProperty.cs startLine: 8 @@ -111,8 +111,8 @@ items: source: remote: path: VintagestoryApi/Common/Worldproperty/WorldProperty.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Variants path: Common/Worldproperty/WorldProperty.cs startLine: 11 diff --git a/api/Vintagestory.API.Common.WorldPropertyVariant.yml b/api/Vintagestory.API.Common.WorldPropertyVariant.yml index 47b253c3..9ff47117 100644 --- a/api/Vintagestory.API.Common.WorldPropertyVariant.yml +++ b/api/Vintagestory.API.Common.WorldPropertyVariant.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Common/Worldproperty/WorldPropertyVariant.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WorldPropertyVariant path: Common/Worldproperty/WorldPropertyVariant.cs startLine: 4 @@ -65,8 +65,8 @@ items: source: remote: path: VintagestoryApi/Common/Worldproperty/WorldPropertyVariant.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Common/Worldproperty/WorldPropertyVariant.cs startLine: 8 diff --git a/api/Vintagestory.API.Config.Dimensions.yml b/api/Vintagestory.API.Config.Dimensions.yml index 8b4b615f..143b657d 100644 --- a/api/Vintagestory.API.Config.Dimensions.yml +++ b/api/Vintagestory.API.Config.Dimensions.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Config/Dimensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dimensions path: Config/Dimensions.cs startLine: 2 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Config/Dimensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NormalWorld path: Config/Dimensions.cs startLine: 7 @@ -81,8 +81,8 @@ items: source: remote: path: VintagestoryApi/Config/Dimensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MiniDimensions path: Config/Dimensions.cs startLine: 11 diff --git a/api/Vintagestory.API.Config.EnumGameBranch.yml b/api/Vintagestory.API.Config.EnumGameBranch.yml index bc1c2abd..218faaa2 100644 --- a/api/Vintagestory.API.Config.EnumGameBranch.yml +++ b/api/Vintagestory.API.Config.EnumGameBranch.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Config/GameVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumGameBranch path: Config/GameVersion.cs startLine: 11 @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Config/GameVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Stable path: Config/GameVersion.cs startLine: 13 @@ -70,8 +70,8 @@ items: source: remote: path: VintagestoryApi/Config/GameVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Unstable path: Config/GameVersion.cs startLine: 14 diff --git a/api/Vintagestory.API.Config.EnumReleaseType.yml b/api/Vintagestory.API.Config.EnumReleaseType.yml index 1f35b286..d9103168 100644 --- a/api/Vintagestory.API.Config.EnumReleaseType.yml +++ b/api/Vintagestory.API.Config.EnumReleaseType.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Config/GameVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumReleaseType path: Config/GameVersion.cs startLine: 17 @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Config/GameVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Stable path: Config/GameVersion.cs startLine: 19 @@ -70,8 +70,8 @@ items: source: remote: path: VintagestoryApi/Config/GameVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Candidate path: Config/GameVersion.cs startLine: 20 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Config/GameVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Preview path: Config/GameVersion.cs startLine: 21 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Config/GameVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Development path: Config/GameVersion.cs startLine: 22 diff --git a/api/Vintagestory.API.Config.FoodSpoilageCalcDelegate.yml b/api/Vintagestory.API.Config.FoodSpoilageCalcDelegate.yml index 1617c4dc..1108acad 100644 --- a/api/Vintagestory.API.Config.FoodSpoilageCalcDelegate.yml +++ b/api/Vintagestory.API.Config.FoodSpoilageCalcDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FoodSpoilageCalcDelegate path: Config/GlobalConstants.cs startLine: 9 diff --git a/api/Vintagestory.API.Config.GamePaths.yml b/api/Vintagestory.API.Config.GamePaths.yml index 02c219fd..0bb5767c 100644 --- a/api/Vintagestory.API.Config.GamePaths.yml +++ b/api/Vintagestory.API.Config.GamePaths.yml @@ -40,8 +40,8 @@ items: source: remote: path: VintagestoryApi/Config/GamePaths.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GamePaths path: Config/GamePaths.cs startLine: 5 @@ -75,8 +75,8 @@ items: source: remote: path: VintagestoryApi/Config/GamePaths.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AllowedNameChars path: Config/GamePaths.cs startLine: 7 @@ -102,8 +102,8 @@ items: source: remote: path: VintagestoryApi/Config/GamePaths.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DataPath path: Config/GamePaths.cs startLine: 9 @@ -129,8 +129,8 @@ items: source: remote: path: VintagestoryApi/Config/GamePaths.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CustomLogPath path: Config/GamePaths.cs startLine: 10 @@ -156,8 +156,8 @@ items: source: remote: path: VintagestoryApi/Config/GamePaths.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AssetsPath path: Config/GamePaths.cs startLine: 11 @@ -185,8 +185,8 @@ items: source: remote: path: VintagestoryApi/Config/GamePaths.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Binaries path: Config/GamePaths.cs startLine: 39 @@ -214,8 +214,8 @@ items: source: remote: path: VintagestoryApi/Config/GamePaths.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BinariesMods path: Config/GamePaths.cs startLine: 40 @@ -243,8 +243,8 @@ items: source: remote: path: VintagestoryApi/Config/GamePaths.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Config path: Config/GamePaths.cs startLine: 42 @@ -272,8 +272,8 @@ items: source: remote: path: VintagestoryApi/Config/GamePaths.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ModConfig path: Config/GamePaths.cs startLine: 43 @@ -301,8 +301,8 @@ items: source: remote: path: VintagestoryApi/Config/GamePaths.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Cache path: Config/GamePaths.cs startLine: 44 @@ -330,8 +330,8 @@ items: source: remote: path: VintagestoryApi/Config/GamePaths.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Saves path: Config/GamePaths.cs startLine: 45 @@ -359,8 +359,8 @@ items: source: remote: path: VintagestoryApi/Config/GamePaths.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OldSaves path: Config/GamePaths.cs startLine: 46 @@ -388,8 +388,8 @@ items: source: remote: path: VintagestoryApi/Config/GamePaths.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BackupSaves path: Config/GamePaths.cs startLine: 47 @@ -417,8 +417,8 @@ items: source: remote: path: VintagestoryApi/Config/GamePaths.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerData path: Config/GamePaths.cs startLine: 48 @@ -446,8 +446,8 @@ items: source: remote: path: VintagestoryApi/Config/GamePaths.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Backups path: Config/GamePaths.cs startLine: 49 @@ -475,8 +475,8 @@ items: source: remote: path: VintagestoryApi/Config/GamePaths.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Logs path: Config/GamePaths.cs startLine: 50 @@ -504,8 +504,8 @@ items: source: remote: path: VintagestoryApi/Config/GamePaths.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Macros path: Config/GamePaths.cs startLine: 51 @@ -533,8 +533,8 @@ items: source: remote: path: VintagestoryApi/Config/GamePaths.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Screenshots path: Config/GamePaths.cs startLine: 52 @@ -562,8 +562,8 @@ items: source: remote: path: VintagestoryApi/Config/GamePaths.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Videos path: Config/GamePaths.cs startLine: 53 @@ -591,8 +591,8 @@ items: source: remote: path: VintagestoryApi/Config/GamePaths.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DataPathMods path: Config/GamePaths.cs startLine: 54 @@ -620,8 +620,8 @@ items: source: remote: path: VintagestoryApi/Config/GamePaths.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DataPathServerMods path: Config/GamePaths.cs startLine: 55 @@ -649,8 +649,8 @@ items: source: remote: path: VintagestoryApi/Config/GamePaths.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DefaultSaveFilenameWithoutExtension path: Config/GamePaths.cs startLine: 58 @@ -676,8 +676,8 @@ items: source: remote: path: VintagestoryApi/Config/GamePaths.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnsurePathExists path: Config/GamePaths.cs startLine: 61 @@ -708,8 +708,8 @@ items: source: remote: path: VintagestoryApi/Config/GamePaths.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnsurePathsExist path: Config/GamePaths.cs startLine: 69 @@ -734,8 +734,8 @@ items: source: remote: path: VintagestoryApi/Config/GamePaths.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsValidName path: Config/GamePaths.cs startLine: 112 @@ -768,8 +768,8 @@ items: source: remote: path: VintagestoryApi/Config/GamePaths.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReplaceInvalidChars path: Config/GamePaths.cs startLine: 129 diff --git a/api/Vintagestory.API.Config.GameVersion.yml b/api/Vintagestory.API.Config.GameVersion.yml index 4df5a523..134da5bc 100644 --- a/api/Vintagestory.API.Config.GameVersion.yml +++ b/api/Vintagestory.API.Config.GameVersion.yml @@ -37,8 +37,8 @@ items: source: remote: path: VintagestoryApi/Config/GameVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GameVersion path: Config/GameVersion.cs startLine: 28 @@ -74,8 +74,8 @@ items: source: remote: path: VintagestoryApi/Config/GameVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OverallVersion path: Config/GameVersion.cs startLine: 33 @@ -103,8 +103,8 @@ items: source: remote: path: VintagestoryApi/Config/GameVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Branch path: Config/GameVersion.cs startLine: 38 @@ -114,10 +114,10 @@ items: summary: Whether this is a stable or unstable version example: [] syntax: - content: public const EnumGameBranch Branch = Unstable + content: public const EnumGameBranch Branch = Stable return: type: Vintagestory.API.Config.EnumGameBranch - content.vb: Public Const Branch As EnumGameBranch = Unstable + content.vb: Public Const Branch As EnumGameBranch = Stable - uid: Vintagestory.API.Config.GameVersion.ShortGameVersion commentId: F:Vintagestory.API.Config.GameVersion.ShortGameVersion id: ShortGameVersion @@ -132,8 +132,8 @@ items: source: remote: path: VintagestoryApi/Config/GameVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShortGameVersion path: Config/GameVersion.cs startLine: 43 @@ -143,10 +143,10 @@ items: summary: 'Version number in the format: major.minor.revision[appendix]' example: [] syntax: - content: public const string ShortGameVersion = "1.19.4-rc.3" + content: public const string ShortGameVersion = "1.19.4" return: type: System.String - content.vb: Public Const ShortGameVersion As String = "1.19.4-rc.3" + content.vb: Public Const ShortGameVersion As String = "1.19.4" - uid: Vintagestory.API.Config.GameVersion.ReleaseType commentId: P:Vintagestory.API.Config.GameVersion.ReleaseType id: ReleaseType @@ -161,8 +161,8 @@ items: source: remote: path: VintagestoryApi/Config/GameVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReleaseType path: Config/GameVersion.cs startLine: 45 @@ -190,8 +190,8 @@ items: source: remote: path: VintagestoryApi/Config/GameVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LongGameVersion path: Config/GameVersion.cs startLine: 50 @@ -219,8 +219,8 @@ items: source: remote: path: VintagestoryApi/Config/GameVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AssemblyVersion path: Config/GameVersion.cs startLine: 55 @@ -248,8 +248,8 @@ items: source: remote: path: VintagestoryApi/Config/GameVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: APIVersion path: Config/GameVersion.cs startLine: 63 @@ -277,8 +277,8 @@ items: source: remote: path: VintagestoryApi/Config/GameVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NetworkVersion path: Config/GameVersion.cs startLine: 68 @@ -306,8 +306,8 @@ items: source: remote: path: VintagestoryApi/Config/GameVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WorldGenVersion path: Config/GameVersion.cs startLine: 73 @@ -335,8 +335,8 @@ items: source: remote: path: VintagestoryApi/Config/GameVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DatabaseVersion path: Config/GameVersion.cs startLine: 78 @@ -364,8 +364,8 @@ items: source: remote: path: VintagestoryApi/Config/GameVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChunkdataVersion path: Config/GameVersion.cs startLine: 83 @@ -393,8 +393,8 @@ items: source: remote: path: VintagestoryApi/Config/GameVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockItemMappingVersion path: Config/GameVersion.cs startLine: 88 @@ -422,8 +422,8 @@ items: source: remote: path: VintagestoryApi/Config/GameVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CopyRight path: Config/GameVersion.cs startLine: 94 @@ -451,8 +451,8 @@ items: source: remote: path: VintagestoryApi/Config/GameVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SplitVersionString path: Config/GameVersion.cs startLine: 98 @@ -485,8 +485,8 @@ items: source: remote: path: VintagestoryApi/Config/GameVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetReleaseType path: Config/GameVersion.cs startLine: 131 @@ -519,8 +519,8 @@ items: source: remote: path: VintagestoryApi/Config/GameVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsCompatibleApiVersion path: Config/GameVersion.cs startLine: 153 @@ -557,8 +557,8 @@ items: source: remote: path: VintagestoryApi/Config/GameVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsCompatibleNetworkVersion path: Config/GameVersion.cs startLine: 168 @@ -595,8 +595,8 @@ items: source: remote: path: VintagestoryApi/Config/GameVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsAtLeastVersion path: Config/GameVersion.cs startLine: 183 @@ -633,8 +633,8 @@ items: source: remote: path: VintagestoryApi/Config/GameVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsAtLeastVersion path: Config/GameVersion.cs startLine: 195 @@ -674,8 +674,8 @@ items: source: remote: path: VintagestoryApi/Config/GameVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsLowerVersionThan path: Config/GameVersion.cs startLine: 212 @@ -710,8 +710,8 @@ items: source: remote: path: VintagestoryApi/Config/GameVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsNewerVersionThan path: Config/GameVersion.cs startLine: 223 @@ -751,8 +751,8 @@ items: source: remote: path: VintagestoryApi/Config/GameVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnsureEqualVersionOrKillExecutable path: Config/GameVersion.cs startLine: 240 diff --git a/api/Vintagestory.API.Config.GlobalConstants.yml b/api/Vintagestory.API.Config.GlobalConstants.yml index b85381e0..9ec591c8 100644 --- a/api/Vintagestory.API.Config.GlobalConstants.yml +++ b/api/Vintagestory.API.Config.GlobalConstants.yml @@ -80,8 +80,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GlobalConstants path: Config/GlobalConstants.cs startLine: 14 @@ -117,8 +117,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DefaultCultureInfo path: Config/GlobalConstants.cs startLine: 16 @@ -144,8 +144,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DefaultDomain path: Config/GlobalConstants.cs startLine: 21 @@ -173,8 +173,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxWorldSizeXZ path: Config/GlobalConstants.cs startLine: 26 @@ -202,8 +202,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxWorldSizeY path: Config/GlobalConstants.cs startLine: 30 @@ -231,8 +231,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChunkSize path: Config/GlobalConstants.cs startLine: 35 @@ -260,8 +260,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DimensionSizeInChunks path: Config/GlobalConstants.cs startLine: 40 @@ -289,8 +289,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxAnimatedElements path: Config/GlobalConstants.cs startLine: 45 @@ -318,8 +318,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxColorMaps path: Config/GlobalConstants.cs startLine: 50 @@ -347,8 +347,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CaveArtColsPerRow path: Config/GlobalConstants.cs startLine: 52 @@ -374,8 +374,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PhysicsFrameTime path: Config/GlobalConstants.cs startLine: 57 @@ -403,8 +403,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxPhysicsIntervalInSlowTicks path: Config/GlobalConstants.cs startLine: 63 @@ -435,8 +435,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GravityStrengthParticle path: Config/GlobalConstants.cs startLine: 68 @@ -464,8 +464,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DefaultAttackRange path: Config/GlobalConstants.cs startLine: 73 @@ -493,8 +493,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OverallSpeedMultiplier path: Config/GlobalConstants.cs startLine: 78 @@ -522,8 +522,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BaseMoveSpeed path: Config/GlobalConstants.cs startLine: 83 @@ -551,8 +551,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BaseJumpForce path: Config/GlobalConstants.cs startLine: 87 @@ -580,8 +580,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SneakSpeedMultiplier path: Config/GlobalConstants.cs startLine: 92 @@ -609,8 +609,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SprintSpeedMultiplier path: Config/GlobalConstants.cs startLine: 97 @@ -638,8 +638,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AirDragAlways path: Config/GlobalConstants.cs startLine: 103 @@ -667,8 +667,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AirDragFlying path: Config/GlobalConstants.cs startLine: 108 @@ -696,8 +696,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WaterDrag path: Config/GlobalConstants.cs startLine: 113 @@ -725,8 +725,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GravityPerSecond path: Config/GlobalConstants.cs startLine: 118 @@ -754,8 +754,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DefaultSimulationRange path: Config/GlobalConstants.cs startLine: 123 @@ -783,8 +783,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DefaultPickingRange path: Config/GlobalConstants.cs startLine: 128 @@ -812,8 +812,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TimeToDespawnPlayerInventoryDrops path: Config/GlobalConstants.cs startLine: 133 @@ -841,8 +841,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentWindSpeedClient path: Config/GlobalConstants.cs startLine: 138 @@ -870,8 +870,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentDistanceToRainfallClient path: Config/GlobalConstants.cs startLine: 143 @@ -899,8 +899,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentNearbyRelLeavesCountClient path: Config/GlobalConstants.cs startLine: 148 @@ -928,8 +928,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MeltingFreezingEnabled path: Config/GlobalConstants.cs startLine: 153 @@ -957,8 +957,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GuiGearRotJitter path: Config/GlobalConstants.cs startLine: 155 @@ -984,8 +984,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxViewDistanceForLodBiases path: Config/GlobalConstants.cs startLine: 157 @@ -1011,8 +1011,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OutsideWorld path: Config/GlobalConstants.cs startLine: 168 @@ -1058,8 +1058,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OutsideWorld path: Config/GlobalConstants.cs startLine: 181 @@ -1105,8 +1105,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WorldSaveExtension path: Config/GlobalConstants.cs startLine: 187 @@ -1132,8 +1132,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: hotBarInvClassName path: Config/GlobalConstants.cs startLine: 188 @@ -1159,8 +1159,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: creativeInvClassName path: Config/GlobalConstants.cs startLine: 189 @@ -1186,8 +1186,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: backpackInvClassName path: Config/GlobalConstants.cs startLine: 190 @@ -1213,8 +1213,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: groundInvClassName path: Config/GlobalConstants.cs startLine: 191 @@ -1240,8 +1240,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: mousecursorInvClassName path: Config/GlobalConstants.cs startLine: 192 @@ -1267,8 +1267,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: characterInvClassName path: Config/GlobalConstants.cs startLine: 193 @@ -1294,8 +1294,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: craftingInvClassName path: Config/GlobalConstants.cs startLine: 194 @@ -1321,8 +1321,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: playerColorByEntitlement path: Config/GlobalConstants.cs startLine: 197 @@ -1348,8 +1348,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: playerTagBackgroundByEntitlement path: Config/GlobalConstants.cs startLine: 209 @@ -1375,8 +1375,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DefaultChatGroups path: Config/GlobalConstants.cs startLine: 267 @@ -1402,8 +1402,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GeneralChatGroup path: Config/GlobalConstants.cs startLine: 272 @@ -1431,8 +1431,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ServerInfoChatGroup path: Config/GlobalConstants.cs startLine: 276 @@ -1460,8 +1460,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DamageLogChatGroup path: Config/GlobalConstants.cs startLine: 280 @@ -1489,8 +1489,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InfoLogChatGroup path: Config/GlobalConstants.cs startLine: 284 @@ -1518,8 +1518,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentChatGroup path: Config/GlobalConstants.cs startLine: 288 @@ -1547,8 +1547,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AllChatGroups path: Config/GlobalConstants.cs startLine: 292 @@ -1576,8 +1576,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ConsoleGroup path: Config/GlobalConstants.cs startLine: 296 @@ -1605,8 +1605,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AllowedChatGroupChars path: Config/GlobalConstants.cs startLine: 301 @@ -1634,8 +1634,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SinglePlayerEntitlements path: Config/GlobalConstants.cs startLine: 306 @@ -1663,8 +1663,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityItemTypeCode path: Config/GlobalConstants.cs startLine: 311 @@ -1692,8 +1692,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityPlayerTypeCode path: Config/GlobalConstants.cs startLine: 315 @@ -1721,8 +1721,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityBlockFallingTypeCode path: Config/GlobalConstants.cs startLine: 320 @@ -1750,8 +1750,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IgnoredStackAttributes path: Config/GlobalConstants.cs startLine: 325 @@ -1779,8 +1779,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PerishSpeedModifier path: Config/GlobalConstants.cs startLine: 330 @@ -1808,8 +1808,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HungerSpeedModifier path: Config/GlobalConstants.cs startLine: 335 @@ -1837,8 +1837,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreatureDamageModifier path: Config/GlobalConstants.cs startLine: 340 @@ -1866,8 +1866,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToolMiningSpeedModifier path: Config/GlobalConstants.cs startLine: 344 @@ -1895,8 +1895,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FoodSpoilHealthLossMulHandler path: Config/GlobalConstants.cs startLine: 346 @@ -1924,8 +1924,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FoodSpoilSatLossMulHandler path: Config/GlobalConstants.cs startLine: 347 @@ -1953,8 +1953,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FoodSpoilageHealthLossMul path: Config/GlobalConstants.cs startLine: 350 @@ -1991,8 +1991,8 @@ items: source: remote: path: VintagestoryApi/Config/GlobalConstants.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FoodSpoilageSatLossMul path: Config/GlobalConstants.cs startLine: 355 diff --git a/api/Vintagestory.API.Config.ITranslationService.yml b/api/Vintagestory.API.Config.ITranslationService.yml index 0b636cd2..ba1935e6 100644 --- a/api/Vintagestory.API.Config.ITranslationService.yml +++ b/api/Vintagestory.API.Config.ITranslationService.yml @@ -30,8 +30,8 @@ items: source: remote: path: VintagestoryApi/Localization/ITranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ITranslationService path: Localization/ITranslationService.cs startLine: 14 @@ -57,8 +57,8 @@ items: source: remote: path: VintagestoryApi/Localization/ITranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LineBreakBehavior path: Localization/ITranslationService.cs startLine: 16 @@ -86,8 +86,8 @@ items: source: remote: path: VintagestoryApi/Localization/ITranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LanguageCode path: Localization/ITranslationService.cs startLine: 22 @@ -118,8 +118,8 @@ items: source: remote: path: VintagestoryApi/Localization/ITranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Load path: Localization/ITranslationService.cs startLine: 27 @@ -152,8 +152,8 @@ items: source: remote: path: VintagestoryApi/Localization/ITranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreLoad path: Localization/ITranslationService.cs startLine: 34 @@ -190,8 +190,8 @@ items: source: remote: path: VintagestoryApi/Localization/ITranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetIfExists path: Localization/ITranslationService.cs startLine: 42 @@ -231,8 +231,8 @@ items: source: remote: path: VintagestoryApi/Localization/ITranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Get path: Localization/ITranslationService.cs startLine: 50 @@ -272,8 +272,8 @@ items: source: remote: path: VintagestoryApi/Localization/ITranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAllEntries path: Localization/ITranslationService.cs startLine: 56 @@ -303,8 +303,8 @@ items: source: remote: path: VintagestoryApi/Localization/ITranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetUnformatted path: Localization/ITranslationService.cs startLine: 63 @@ -341,8 +341,8 @@ items: source: remote: path: VintagestoryApi/Localization/ITranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMatching path: Localization/ITranslationService.cs startLine: 71 @@ -382,8 +382,8 @@ items: source: remote: path: VintagestoryApi/Localization/ITranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMatchingIfExists path: Localization/ITranslationService.cs startLine: 79 @@ -423,8 +423,8 @@ items: source: remote: path: VintagestoryApi/Localization/ITranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HasTranslation path: Localization/ITranslationService.cs startLine: 87 @@ -464,8 +464,8 @@ items: source: remote: path: VintagestoryApi/Localization/ITranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HasTranslation path: Localization/ITranslationService.cs startLine: 96 @@ -508,8 +508,8 @@ items: source: remote: path: VintagestoryApi/Localization/ITranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UseAssetManager path: Localization/ITranslationService.cs startLine: 102 @@ -540,8 +540,8 @@ items: source: remote: path: VintagestoryApi/Localization/ITranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InitialiseSearch path: Localization/ITranslationService.cs startLine: 107 @@ -568,8 +568,8 @@ items: source: remote: path: VintagestoryApi/Localization/ITranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Invalidate path: Localization/ITranslationService.cs startLine: 112 diff --git a/api/Vintagestory.API.Config.Lang.yml b/api/Vintagestory.API.Config.Lang.yml index 317b9546..bc3b587a 100644 --- a/api/Vintagestory.API.Config.Lang.yml +++ b/api/Vintagestory.API.Config.Lang.yml @@ -33,8 +33,8 @@ items: source: remote: path: VintagestoryApi/Localization/Lang.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Lang path: Localization/Lang.cs startLine: 22 @@ -71,8 +71,8 @@ items: source: remote: path: VintagestoryApi/Localization/Lang.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AvailableLanguages path: Localization/Lang.cs startLine: 24 @@ -100,8 +100,8 @@ items: source: remote: path: VintagestoryApi/Localization/Lang.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentLocale path: Localization/Lang.cs startLine: 30 @@ -132,8 +132,8 @@ items: source: remote: path: VintagestoryApi/Localization/Lang.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DefaultLocale path: Localization/Lang.cs startLine: 31 @@ -161,8 +161,8 @@ items: source: remote: path: VintagestoryApi/Localization/Lang.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Load path: Localization/Lang.cs startLine: 40 @@ -202,8 +202,8 @@ items: source: remote: path: VintagestoryApi/Localization/Lang.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChangeLanguage path: Localization/Lang.cs startLine: 66 @@ -237,8 +237,8 @@ items: source: remote: path: VintagestoryApi/Localization/Lang.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadLanguage path: Localization/Lang.cs startLine: 79 @@ -284,8 +284,8 @@ items: source: remote: path: VintagestoryApi/Localization/Lang.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreLoad path: Localization/Lang.cs startLine: 98 @@ -325,8 +325,8 @@ items: source: remote: path: VintagestoryApi/Localization/Lang.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetIfExists path: Localization/Lang.cs startLine: 136 @@ -366,8 +366,8 @@ items: source: remote: path: VintagestoryApi/Localization/Lang.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetL path: Localization/Lang.cs startLine: 150 @@ -410,8 +410,8 @@ items: source: remote: path: VintagestoryApi/Localization/Lang.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMatchingL path: Localization/Lang.cs startLine: 157 @@ -448,8 +448,8 @@ items: source: remote: path: VintagestoryApi/Localization/Lang.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Get path: Localization/Lang.cs startLine: 170 @@ -489,8 +489,8 @@ items: source: remote: path: VintagestoryApi/Localization/Lang.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetUnformatted path: Localization/Lang.cs startLine: 182 @@ -527,8 +527,8 @@ items: source: remote: path: VintagestoryApi/Localization/Lang.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMatching path: Localization/Lang.cs startLine: 195 @@ -568,8 +568,8 @@ items: source: remote: path: VintagestoryApi/Localization/Lang.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMatchingIfExists path: Localization/Lang.cs startLine: 208 @@ -609,8 +609,8 @@ items: source: remote: path: VintagestoryApi/Localization/Lang.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAllEntries path: Localization/Lang.cs startLine: 219 @@ -640,8 +640,8 @@ items: source: remote: path: VintagestoryApi/Localization/Lang.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HasTranslation path: Localization/Lang.cs startLine: 237 @@ -684,8 +684,8 @@ items: source: remote: path: VintagestoryApi/Localization/Lang.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InitialiseSearch path: Localization/Lang.cs startLine: 242 @@ -710,8 +710,8 @@ items: source: remote: path: VintagestoryApi/Localization/Lang.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetNamePlaceHolder path: Localization/Lang.cs startLine: 248 diff --git a/api/Vintagestory.API.Config.OS.yml b/api/Vintagestory.API.Config.OS.yml index 34c58856..6a26992c 100644 --- a/api/Vintagestory.API.Config.OS.yml +++ b/api/Vintagestory.API.Config.OS.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Config/RuntimeEnv.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OS path: Config/RuntimeEnv.cs startLine: 14 @@ -45,8 +45,8 @@ items: source: remote: path: VintagestoryApi/Config/RuntimeEnv.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Windows path: Config/RuntimeEnv.cs startLine: 16 @@ -71,8 +71,8 @@ items: source: remote: path: VintagestoryApi/Config/RuntimeEnv.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mac path: Config/RuntimeEnv.cs startLine: 17 @@ -97,8 +97,8 @@ items: source: remote: path: VintagestoryApi/Config/RuntimeEnv.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Linux path: Config/RuntimeEnv.cs startLine: 18 diff --git a/api/Vintagestory.API.Config.RuntimeEnv.yml b/api/Vintagestory.API.Config.RuntimeEnv.yml index c57633aa..3a238e8c 100644 --- a/api/Vintagestory.API.Config.RuntimeEnv.yml +++ b/api/Vintagestory.API.Config.RuntimeEnv.yml @@ -28,8 +28,8 @@ items: source: remote: path: VintagestoryApi/Config/RuntimeEnv.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RuntimeEnv path: Config/RuntimeEnv.cs startLine: 24 @@ -65,8 +65,8 @@ items: source: remote: path: VintagestoryApi/Config/RuntimeEnv.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DebugTextureDispose path: Config/RuntimeEnv.cs startLine: 29 @@ -94,8 +94,8 @@ items: source: remote: path: VintagestoryApi/Config/RuntimeEnv.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DebugVAODispose path: Config/RuntimeEnv.cs startLine: 33 @@ -123,8 +123,8 @@ items: source: remote: path: VintagestoryApi/Config/RuntimeEnv.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DebugSoundDispose path: Config/RuntimeEnv.cs startLine: 37 @@ -152,8 +152,8 @@ items: source: remote: path: VintagestoryApi/Config/RuntimeEnv.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DebugOutOfRangeBlockAccess path: Config/RuntimeEnv.cs startLine: 42 @@ -181,8 +181,8 @@ items: source: remote: path: VintagestoryApi/Config/RuntimeEnv.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DebugThreadPool path: Config/RuntimeEnv.cs startLine: 47 @@ -210,8 +210,8 @@ items: source: remote: path: VintagestoryApi/Config/RuntimeEnv.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MainThreadId path: Config/RuntimeEnv.cs startLine: 49 @@ -237,8 +237,8 @@ items: source: remote: path: VintagestoryApi/Config/RuntimeEnv.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ServerMainThreadId path: Config/RuntimeEnv.cs startLine: 50 @@ -264,8 +264,8 @@ items: source: remote: path: VintagestoryApi/Config/RuntimeEnv.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GUIScale path: Config/RuntimeEnv.cs startLine: 53 @@ -291,8 +291,8 @@ items: source: remote: path: VintagestoryApi/Config/RuntimeEnv.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OS path: Config/RuntimeEnv.cs startLine: 58 @@ -320,8 +320,8 @@ items: source: remote: path: VintagestoryApi/Config/RuntimeEnv.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnvSearchPathName path: Config/RuntimeEnv.cs startLine: 63 @@ -349,8 +349,8 @@ items: source: remote: path: VintagestoryApi/Config/RuntimeEnv.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsDevEnvironment path: Config/RuntimeEnv.cs startLine: 90 @@ -378,8 +378,8 @@ items: source: remote: path: VintagestoryApi/Config/RuntimeEnv.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetLocalIpAddress path: Config/RuntimeEnv.cs startLine: 93 @@ -406,8 +406,8 @@ items: source: remote: path: VintagestoryApi/Config/RuntimeEnv.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetOsString path: Config/RuntimeEnv.cs startLine: 143 diff --git a/api/Vintagestory.API.Config.TranslationService.yml b/api/Vintagestory.API.Config.TranslationService.yml index 9d178708..7c033c6a 100644 --- a/api/Vintagestory.API.Config.TranslationService.yml +++ b/api/Vintagestory.API.Config.TranslationService.yml @@ -33,8 +33,8 @@ items: source: remote: path: VintagestoryApi/Localization/TranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TranslationService path: Localization/TranslationService.cs startLine: 24 @@ -75,8 +75,8 @@ items: source: remote: path: VintagestoryApi/Localization/TranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LineBreakBehavior path: Localization/TranslationService.cs startLine: 35 @@ -107,8 +107,8 @@ items: source: remote: path: VintagestoryApi/Localization/TranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Localization/TranslationService.cs startLine: 45 @@ -151,8 +151,8 @@ items: source: remote: path: VintagestoryApi/Localization/TranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LanguageCode path: Localization/TranslationService.cs startLine: 57 @@ -185,8 +185,8 @@ items: source: remote: path: VintagestoryApi/Localization/TranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Load path: Localization/TranslationService.cs startLine: 62 @@ -221,8 +221,8 @@ items: source: remote: path: VintagestoryApi/Localization/TranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreLoad path: Localization/TranslationService.cs startLine: 100 @@ -261,8 +261,8 @@ items: source: remote: path: VintagestoryApi/Localization/TranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnsureLoaded path: Localization/TranslationService.cs startLine: 136 @@ -287,8 +287,8 @@ items: source: remote: path: VintagestoryApi/Localization/TranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Invalidate path: Localization/TranslationService.cs startLine: 148 @@ -317,8 +317,8 @@ items: source: remote: path: VintagestoryApi/Localization/TranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Format path: Localization/TranslationService.cs startLine: 153 @@ -353,8 +353,8 @@ items: source: remote: path: VintagestoryApi/Localization/TranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetIfExists path: Localization/TranslationService.cs startLine: 380 @@ -399,8 +399,8 @@ items: source: remote: path: VintagestoryApi/Localization/TranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Get path: Localization/TranslationService.cs startLine: 397 @@ -445,8 +445,8 @@ items: source: remote: path: VintagestoryApi/Localization/TranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAllEntries path: Localization/TranslationService.cs startLine: 406 @@ -478,8 +478,8 @@ items: source: remote: path: VintagestoryApi/Localization/TranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetUnformatted path: Localization/TranslationService.cs startLine: 420 @@ -521,8 +521,8 @@ items: source: remote: path: VintagestoryApi/Localization/TranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMatching path: Localization/TranslationService.cs startLine: 436 @@ -567,8 +567,8 @@ items: source: remote: path: VintagestoryApi/Localization/TranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HasTranslation path: Localization/TranslationService.cs startLine: 451 @@ -610,8 +610,8 @@ items: source: remote: path: VintagestoryApi/Localization/TranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HasTranslation path: Localization/TranslationService.cs startLine: 463 @@ -656,8 +656,8 @@ items: source: remote: path: VintagestoryApi/Localization/TranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UseAssetManager path: Localization/TranslationService.cs startLine: 483 @@ -690,8 +690,8 @@ items: source: remote: path: VintagestoryApi/Localization/TranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMatchingIfExists path: Localization/TranslationService.cs startLine: 496 @@ -733,8 +733,8 @@ items: source: remote: path: VintagestoryApi/Localization/TranslationService.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InitialiseSearch path: Localization/TranslationService.cs startLine: 551 diff --git a/api/Vintagestory.API.Datastructures.ArrayAttribute-1.yml b/api/Vintagestory.API.Datastructures.ArrayAttribute-1.yml index 86ef2913..dc9c8053 100644 --- a/api/Vintagestory.API.Datastructures.ArrayAttribute-1.yml +++ b/api/Vintagestory.API.Datastructures.ArrayAttribute-1.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/ArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ArrayAttribute path: Datastructures/AttributeTree/Other/ArrayAttribute.cs startLine: 7 @@ -68,8 +68,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/ArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: value path: Datastructures/AttributeTree/Other/ArrayAttribute.cs startLine: 9 @@ -97,8 +97,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/ArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Datastructures/AttributeTree/Other/ArrayAttribute.cs startLine: 11 @@ -132,8 +132,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/ArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Datastructures/AttributeTree/Other/ArrayAttribute.cs startLine: 34 @@ -162,8 +162,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/ArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToJsonToken path: Datastructures/AttributeTree/Other/ArrayAttribute.cs startLine: 40 @@ -192,8 +192,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/ArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Datastructures/AttributeTree/Other/ArrayAttribute.cs startLine: 62 @@ -226,8 +226,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/ArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHashCode path: Datastructures/AttributeTree/Other/ArrayAttribute.cs startLine: 80 diff --git a/api/Vintagestory.API.Datastructures.BoolArrayAttribute.yml b/api/Vintagestory.API.Datastructures.BoolArrayAttribute.yml index cf1e2dca..459a840f 100644 --- a/api/Vintagestory.API.Datastructures.BoolArrayAttribute.yml +++ b/api/Vintagestory.API.Datastructures.BoolArrayAttribute.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/BoolArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BoolArrayAttribute path: Datastructures/AttributeTree/BoolArrayAttribute.cs startLine: 4 @@ -63,8 +63,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/BoolArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/AttributeTree/BoolArrayAttribute.cs startLine: 6 @@ -92,8 +92,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/BoolArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/AttributeTree/BoolArrayAttribute.cs startLine: 11 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/BoolArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Datastructures/AttributeTree/BoolArrayAttribute.cs startLine: 16 @@ -156,8 +156,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/BoolArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Datastructures/AttributeTree/BoolArrayAttribute.cs startLine: 26 @@ -188,8 +188,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/BoolArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAttributeId path: Datastructures/AttributeTree/BoolArrayAttribute.cs startLine: 37 @@ -219,8 +219,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/BoolArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Datastructures/AttributeTree/BoolArrayAttribute.cs startLine: 42 diff --git a/api/Vintagestory.API.Datastructures.BoolAttribute.yml b/api/Vintagestory.API.Datastructures.BoolAttribute.yml index 21d87ba4..7452b1bb 100644 --- a/api/Vintagestory.API.Datastructures.BoolAttribute.yml +++ b/api/Vintagestory.API.Datastructures.BoolAttribute.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/BoolAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BoolAttribute path: Datastructures/AttributeTree/BoolAttribute.cs startLine: 4 @@ -63,8 +63,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/BoolAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/AttributeTree/BoolAttribute.cs startLine: 6 @@ -92,8 +92,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/BoolAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/AttributeTree/BoolAttribute.cs startLine: 11 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/BoolAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Datastructures/AttributeTree/BoolAttribute.cs startLine: 16 @@ -156,8 +156,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/BoolAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Datastructures/AttributeTree/BoolAttribute.cs startLine: 21 @@ -188,8 +188,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/BoolAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAttributeId path: Datastructures/AttributeTree/BoolAttribute.cs startLine: 26 @@ -219,8 +219,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/BoolAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToJsonToken path: Datastructures/AttributeTree/BoolAttribute.cs startLine: 31 @@ -251,8 +251,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/BoolAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Datastructures/AttributeTree/BoolAttribute.cs startLine: 37 diff --git a/api/Vintagestory.API.Datastructures.BoolRef.yml b/api/Vintagestory.API.Datastructures.BoolRef.yml index c5ab9972..a2187870 100644 --- a/api/Vintagestory.API.Datastructures.BoolRef.yml +++ b/api/Vintagestory.API.Datastructures.BoolRef.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/BoolRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BoolRef path: Datastructures/BoolRef.cs startLine: 15 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/BoolRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: value path: Datastructures/BoolRef.cs startLine: 17 @@ -80,8 +80,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/BoolRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Datastructures/BoolRef.cs startLine: 18 @@ -108,8 +108,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/BoolRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Datastructures/BoolRef.cs startLine: 19 diff --git a/api/Vintagestory.API.Datastructures.Bools.yml b/api/Vintagestory.API.Datastructures.Bools.yml index f9d898b8..812f529b 100644 --- a/api/Vintagestory.API.Datastructures.Bools.yml +++ b/api/Vintagestory.API.Datastructures.Bools.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/BoolRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Bools path: Datastructures/BoolRef.cs startLine: 22 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/BoolRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Datastructures/BoolRef.cs startLine: 25 @@ -86,8 +86,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/BoolRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/BoolRef.cs startLine: 26 diff --git a/api/Vintagestory.API.Datastructures.ByteArrayAttribute.yml b/api/Vintagestory.API.Datastructures.ByteArrayAttribute.yml index f238dac3..dd2aed32 100644 --- a/api/Vintagestory.API.Datastructures.ByteArrayAttribute.yml +++ b/api/Vintagestory.API.Datastructures.ByteArrayAttribute.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ByteArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ByteArrayAttribute path: Datastructures/AttributeTree/ByteArrayAttribute.cs startLine: 4 @@ -63,8 +63,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ByteArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/AttributeTree/ByteArrayAttribute.cs startLine: 6 @@ -92,8 +92,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ByteArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/AttributeTree/ByteArrayAttribute.cs startLine: 11 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ByteArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Datastructures/AttributeTree/ByteArrayAttribute.cs startLine: 16 @@ -156,8 +156,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ByteArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Datastructures/AttributeTree/ByteArrayAttribute.cs startLine: 22 @@ -188,8 +188,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ByteArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAttributeId path: Datastructures/AttributeTree/ByteArrayAttribute.cs startLine: 28 @@ -219,8 +219,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ByteArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Datastructures/AttributeTree/ByteArrayAttribute.cs startLine: 33 diff --git a/api/Vintagestory.API.Datastructures.CachedCuboidList.yml b/api/Vintagestory.API.Datastructures.CachedCuboidList.yml index bfc0d72d..459fa158 100644 --- a/api/Vintagestory.API.Datastructures.CachedCuboidList.yml +++ b/api/Vintagestory.API.Datastructures.CachedCuboidList.yml @@ -24,8 +24,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/CachedCuboidList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CachedCuboidList path: Datastructures/CachedCuboidList.cs startLine: 7 @@ -66,8 +66,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/CachedCuboidList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: cuboids path: Datastructures/CachedCuboidList.cs startLine: 9 @@ -93,8 +93,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/CachedCuboidList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: positions path: Datastructures/CachedCuboidList.cs startLine: 10 @@ -120,8 +120,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/CachedCuboidList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: blocks path: Datastructures/CachedCuboidList.cs startLine: 11 @@ -147,8 +147,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/CachedCuboidList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Count path: Datastructures/CachedCuboidList.cs startLine: 12 @@ -174,8 +174,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/CachedCuboidList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/CachedCuboidList.cs startLine: 15 @@ -203,8 +203,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/CachedCuboidList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clear path: Datastructures/CachedCuboidList.cs startLine: 20 @@ -229,8 +229,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/CachedCuboidList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Datastructures/CachedCuboidList.cs startLine: 25 @@ -269,8 +269,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/CachedCuboidList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Datastructures/CachedCuboidList.cs startLine: 33 @@ -309,8 +309,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/CachedCuboidList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetEnumerator path: Datastructures/CachedCuboidList.cs startLine: 62 diff --git a/api/Vintagestory.API.Datastructures.CachingConcurrentDictionary-2.yml b/api/Vintagestory.API.Datastructures.CachingConcurrentDictionary-2.yml index 2d6aaddb..bfac8f86 100644 --- a/api/Vintagestory.API.Datastructures.CachingConcurrentDictionary-2.yml +++ b/api/Vintagestory.API.Datastructures.CachingConcurrentDictionary-2.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/CachedConcurrentDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CachingConcurrentDictionary path: Datastructures/CachedConcurrentDictionary.cs startLine: 13 @@ -110,8 +110,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/CachedConcurrentDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Values path: Datastructures/CachedConcurrentDictionary.cs startLine: 17 @@ -141,8 +141,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/CachedConcurrentDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryAdd path: Datastructures/CachedConcurrentDictionary.cs startLine: 22 @@ -176,8 +176,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/CachedConcurrentDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryRemove path: Datastructures/CachedConcurrentDictionary.cs startLine: 29 @@ -212,8 +212,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/CachedConcurrentDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Datastructures/CachedConcurrentDictionary.cs startLine: 36 diff --git a/api/Vintagestory.API.Datastructures.DoubleArrayAttribute.yml b/api/Vintagestory.API.Datastructures.DoubleArrayAttribute.yml index 50d5f0db..fda0b6d3 100644 --- a/api/Vintagestory.API.Datastructures.DoubleArrayAttribute.yml +++ b/api/Vintagestory.API.Datastructures.DoubleArrayAttribute.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/DoubleAttrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DoubleArrayAttribute path: Datastructures/AttributeTree/DoubleAttrayAttribute.cs startLine: 6 @@ -63,8 +63,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/DoubleAttrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/AttributeTree/DoubleAttrayAttribute.cs startLine: 8 @@ -92,8 +92,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/DoubleAttrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/AttributeTree/DoubleAttrayAttribute.cs startLine: 13 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/DoubleAttrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Datastructures/AttributeTree/DoubleAttrayAttribute.cs startLine: 18 @@ -156,8 +156,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/DoubleAttrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Datastructures/AttributeTree/DoubleAttrayAttribute.cs startLine: 28 @@ -188,8 +188,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/DoubleAttrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAttributeId path: Datastructures/AttributeTree/DoubleAttrayAttribute.cs startLine: 39 @@ -219,8 +219,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/DoubleAttrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToJsonToken path: Datastructures/AttributeTree/DoubleAttrayAttribute.cs startLine: 44 @@ -251,8 +251,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/DoubleAttrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Datastructures/AttributeTree/DoubleAttrayAttribute.cs startLine: 60 diff --git a/api/Vintagestory.API.Datastructures.DoubleAttribute.yml b/api/Vintagestory.API.Datastructures.DoubleAttribute.yml index c51a009b..b16799e7 100644 --- a/api/Vintagestory.API.Datastructures.DoubleAttribute.yml +++ b/api/Vintagestory.API.Datastructures.DoubleAttribute.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/DoubleAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DoubleAttribute path: Datastructures/AttributeTree/DoubleAttribute.cs startLine: 5 @@ -63,8 +63,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/DoubleAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/AttributeTree/DoubleAttribute.cs startLine: 7 @@ -92,8 +92,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/DoubleAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/AttributeTree/DoubleAttribute.cs startLine: 12 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/DoubleAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Datastructures/AttributeTree/DoubleAttribute.cs startLine: 17 @@ -156,8 +156,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/DoubleAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Datastructures/AttributeTree/DoubleAttribute.cs startLine: 22 @@ -188,8 +188,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/DoubleAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAttributeId path: Datastructures/AttributeTree/DoubleAttribute.cs startLine: 27 @@ -219,8 +219,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/DoubleAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToJsonToken path: Datastructures/AttributeTree/DoubleAttribute.cs startLine: 32 @@ -251,8 +251,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/DoubleAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Datastructures/AttributeTree/DoubleAttribute.cs startLine: 37 @@ -283,8 +283,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/DoubleAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Datastructures/AttributeTree/DoubleAttribute.cs startLine: 42 diff --git a/api/Vintagestory.API.Datastructures.EnumAttributeType.yml b/api/Vintagestory.API.Datastructures.EnumAttributeType.yml index 4625eef3..4cdecd01 100644 --- a/api/Vintagestory.API.Datastructures.EnumAttributeType.yml +++ b/api/Vintagestory.API.Datastructures.EnumAttributeType.yml @@ -25,8 +25,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/EnumAttributeType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumAttributeType path: Datastructures/AttributeTree/Other/EnumAttributeType.cs startLine: 2 @@ -50,8 +50,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/EnumAttributeType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Unknown path: Datastructures/AttributeTree/Other/EnumAttributeType.cs startLine: 4 @@ -76,8 +76,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/EnumAttributeType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Int path: Datastructures/AttributeTree/Other/EnumAttributeType.cs startLine: 5 @@ -102,8 +102,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/EnumAttributeType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Long path: Datastructures/AttributeTree/Other/EnumAttributeType.cs startLine: 6 @@ -128,8 +128,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/EnumAttributeType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Double path: Datastructures/AttributeTree/Other/EnumAttributeType.cs startLine: 7 @@ -154,8 +154,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/EnumAttributeType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Float path: Datastructures/AttributeTree/Other/EnumAttributeType.cs startLine: 8 @@ -180,8 +180,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/EnumAttributeType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: String path: Datastructures/AttributeTree/Other/EnumAttributeType.cs startLine: 9 @@ -206,8 +206,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/EnumAttributeType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Tree path: Datastructures/AttributeTree/Other/EnumAttributeType.cs startLine: 10 @@ -232,8 +232,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/EnumAttributeType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Itemstack path: Datastructures/AttributeTree/Other/EnumAttributeType.cs startLine: 11 @@ -258,8 +258,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/EnumAttributeType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StringArray path: Datastructures/AttributeTree/Other/EnumAttributeType.cs startLine: 12 @@ -284,8 +284,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/EnumAttributeType.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Bool path: Datastructures/AttributeTree/Other/EnumAttributeType.cs startLine: 13 diff --git a/api/Vintagestory.API.Datastructures.FastLargeSetOfLongs.yml b/api/Vintagestory.API.Datastructures.FastLargeSetOfLongs.yml index fa0a77a3..7a27e8af 100644 --- a/api/Vintagestory.API.Datastructures.FastLargeSetOfLongs.yml +++ b/api/Vintagestory.API.Datastructures.FastLargeSetOfLongs.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FastLargeSetOfLongs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FastLargeSetOfLongs path: Datastructures/FastLargeSetOfLongs.cs startLine: 5 @@ -62,8 +62,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FastLargeSetOfLongs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Count path: Datastructures/FastLargeSetOfLongs.cs startLine: 12 @@ -91,8 +91,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FastLargeSetOfLongs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clear path: Datastructures/FastLargeSetOfLongs.cs startLine: 14 @@ -117,8 +117,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FastLargeSetOfLongs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/FastLargeSetOfLongs.cs startLine: 20 @@ -149,8 +149,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FastLargeSetOfLongs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Datastructures/FastLargeSetOfLongs.cs startLine: 41 @@ -187,8 +187,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FastLargeSetOfLongs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetEnumerator path: Datastructures/FastLargeSetOfLongs.cs startLine: 75 diff --git a/api/Vintagestory.API.Datastructures.FastList-1.yml b/api/Vintagestory.API.Datastructures.FastList-1.yml index 2e5971e1..16d7b100 100644 --- a/api/Vintagestory.API.Datastructures.FastList-1.yml +++ b/api/Vintagestory.API.Datastructures.FastList-1.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FastList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FastList path: Datastructures/FastList.cs startLine: 8 @@ -68,8 +68,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FastList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/FastList.cs startLine: 13 @@ -97,8 +97,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FastList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Count path: Datastructures/FastList.cs startLine: 17 @@ -128,8 +128,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FastList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Datastructures/FastList.cs startLine: 22 @@ -159,8 +159,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FastList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clear path: Datastructures/FastList.cs startLine: 38 @@ -187,8 +187,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FastList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveAt path: Datastructures/FastList.cs startLine: 43 @@ -219,8 +219,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FastList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Datastructures/FastList.cs startLine: 58 @@ -253,8 +253,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FastList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetEnumerator path: Datastructures/FastList.cs startLine: 70 @@ -288,8 +288,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FastList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Contains path: Datastructures/FastList.cs startLine: 75 diff --git a/api/Vintagestory.API.Datastructures.FastListEnum-1.yml b/api/Vintagestory.API.Datastructures.FastListEnum-1.yml index d587d07f..0d1320f3 100644 --- a/api/Vintagestory.API.Datastructures.FastListEnum-1.yml +++ b/api/Vintagestory.API.Datastructures.FastListEnum-1.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FastList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FastListEnum path: Datastructures/FastList.cs startLine: 86 @@ -61,8 +61,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FastList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/FastList.cs startLine: 91 @@ -93,8 +93,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FastList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Current path: Datastructures/FastList.cs startLine: 95 @@ -129,8 +129,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FastList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MoveNext path: Datastructures/FastList.cs startLine: 97 @@ -168,8 +168,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FastList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Reset path: Datastructures/FastList.cs startLine: 104 diff --git a/api/Vintagestory.API.Datastructures.FastSetOfInts.yml b/api/Vintagestory.API.Datastructures.FastSetOfInts.yml index e77b3d41..cf59bd8e 100644 --- a/api/Vintagestory.API.Datastructures.FastSetOfInts.yml +++ b/api/Vintagestory.API.Datastructures.FastSetOfInts.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FastSetOfInts.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FastSetOfInts path: Datastructures/FastSetOfInts.cs startLine: 5 @@ -64,8 +64,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FastSetOfInts.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Count path: Datastructures/FastSetOfInts.cs startLine: 10 @@ -93,8 +93,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FastSetOfInts.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clear path: Datastructures/FastSetOfInts.cs startLine: 12 @@ -119,8 +119,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FastSetOfInts.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/FastSetOfInts.cs startLine: 17 @@ -148,8 +148,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FastSetOfInts.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Datastructures/FastSetOfInts.cs startLine: 30 @@ -195,8 +195,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FastSetOfInts.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Datastructures/FastSetOfInts.cs startLine: 40 @@ -233,8 +233,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FastSetOfInts.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveIfMatches path: Datastructures/FastSetOfInts.cs startLine: 57 @@ -271,8 +271,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FastSetOfInts.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetEnumerator path: Datastructures/FastSetOfInts.cs startLine: 86 diff --git a/api/Vintagestory.API.Datastructures.FastSetOfLongs.yml b/api/Vintagestory.API.Datastructures.FastSetOfLongs.yml index 95fc8137..fe9b598b 100644 --- a/api/Vintagestory.API.Datastructures.FastSetOfLongs.yml +++ b/api/Vintagestory.API.Datastructures.FastSetOfLongs.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FastSetOfLongs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FastSetOfLongs path: Datastructures/FastSetOfLongs.cs startLine: 5 @@ -62,8 +62,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FastSetOfLongs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Count path: Datastructures/FastSetOfLongs.cs startLine: 11 @@ -91,8 +91,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FastSetOfLongs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clear path: Datastructures/FastSetOfLongs.cs startLine: 13 @@ -117,8 +117,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FastSetOfLongs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/FastSetOfLongs.cs startLine: 19 @@ -146,8 +146,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FastSetOfLongs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Datastructures/FastSetOfLongs.cs startLine: 29 @@ -184,8 +184,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FastSetOfLongs.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetEnumerator path: Datastructures/FastSetOfLongs.cs startLine: 58 diff --git a/api/Vintagestory.API.Datastructures.FastSmallDictionary-2.yml b/api/Vintagestory.API.Datastructures.FastSmallDictionary-2.yml index d4315d78..a0619eea 100644 --- a/api/Vintagestory.API.Datastructures.FastSmallDictionary-2.yml +++ b/api/Vintagestory.API.Datastructures.FastSmallDictionary-2.yml @@ -34,8 +34,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/FastSmallDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FastSmallDictionary path: Datastructures/Dictionary/FastSmallDictionary.cs startLine: 13 @@ -100,8 +100,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/FastSmallDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Keys path: Datastructures/Dictionary/FastSmallDictionary.cs startLine: 19 @@ -136,8 +136,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/FastSmallDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Values path: Datastructures/Dictionary/FastSmallDictionary.cs startLine: 21 @@ -172,8 +172,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/FastSmallDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsReadOnly path: Datastructures/Dictionary/FastSmallDictionary.cs startLine: 25 @@ -208,8 +208,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/FastSmallDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/Dictionary/FastSmallDictionary.cs startLine: 27 @@ -240,8 +240,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/FastSmallDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/Dictionary/FastSmallDictionary.cs startLine: 33 @@ -274,8 +274,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/FastSmallDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/Dictionary/FastSmallDictionary.cs startLine: 40 @@ -306,8 +306,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/FastSmallDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Datastructures/Dictionary/FastSmallDictionary.cs startLine: 45 @@ -336,8 +336,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/FastSmallDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetFirstKey path: Datastructures/Dictionary/FastSmallDictionary.cs startLine: 56 @@ -366,8 +366,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/FastSmallDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Datastructures/Dictionary/FastSmallDictionary.cs startLine: 64 @@ -404,8 +404,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/FastSmallDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ContainsKey path: Datastructures/Dictionary/FastSmallDictionary.cs startLine: 107 @@ -447,8 +447,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/FastSmallDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Datastructures/Dictionary/FastSmallDictionary.cs startLine: 117 @@ -496,8 +496,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/FastSmallDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryGetValue path: Datastructures/Dictionary/FastSmallDictionary.cs startLine: 130 @@ -538,8 +538,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/FastSmallDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clear path: Datastructures/Dictionary/FastSmallDictionary.cs startLine: 145 @@ -574,8 +574,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/FastSmallDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetEnumerator path: Datastructures/Dictionary/FastSmallDictionary.cs startLine: 156 @@ -609,8 +609,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/FastSmallDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Datastructures/Dictionary/FastSmallDictionary.cs startLine: 167 @@ -650,8 +650,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/FastSmallDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Contains path: Datastructures/Dictionary/FastSmallDictionary.cs startLine: 182 @@ -690,8 +690,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/FastSmallDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Remove path: Datastructures/Dictionary/FastSmallDictionary.cs startLine: 197 @@ -736,8 +736,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/FastSmallDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Remove path: Datastructures/Dictionary/FastSmallDictionary.cs startLine: 211 @@ -780,8 +780,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/FastSmallDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CopyTo path: Datastructures/Dictionary/FastSmallDictionary.cs startLine: 242 diff --git a/api/Vintagestory.API.Datastructures.FloatArrayAttribute.yml b/api/Vintagestory.API.Datastructures.FloatArrayAttribute.yml index 704d0c67..0fc320f7 100644 --- a/api/Vintagestory.API.Datastructures.FloatArrayAttribute.yml +++ b/api/Vintagestory.API.Datastructures.FloatArrayAttribute.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/FloatArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FloatArrayAttribute path: Datastructures/AttributeTree/FloatArrayAttribute.cs startLine: 6 @@ -63,8 +63,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/FloatArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/AttributeTree/FloatArrayAttribute.cs startLine: 8 @@ -92,8 +92,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/FloatArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/AttributeTree/FloatArrayAttribute.cs startLine: 13 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/FloatArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Datastructures/AttributeTree/FloatArrayAttribute.cs startLine: 18 @@ -156,8 +156,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/FloatArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Datastructures/AttributeTree/FloatArrayAttribute.cs startLine: 28 @@ -188,8 +188,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/FloatArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAttributeId path: Datastructures/AttributeTree/FloatArrayAttribute.cs startLine: 39 @@ -219,8 +219,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/FloatArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToJsonToken path: Datastructures/AttributeTree/FloatArrayAttribute.cs startLine: 44 @@ -251,8 +251,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/FloatArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Datastructures/AttributeTree/FloatArrayAttribute.cs startLine: 60 diff --git a/api/Vintagestory.API.Datastructures.FloatAttribute.yml b/api/Vintagestory.API.Datastructures.FloatAttribute.yml index 08010489..fd5bc355 100644 --- a/api/Vintagestory.API.Datastructures.FloatAttribute.yml +++ b/api/Vintagestory.API.Datastructures.FloatAttribute.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/FloatAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FloatAttribute path: Datastructures/AttributeTree/FloatAttribute.cs startLine: 6 @@ -63,8 +63,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/FloatAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/AttributeTree/FloatAttribute.cs startLine: 8 @@ -92,8 +92,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/FloatAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/AttributeTree/FloatAttribute.cs startLine: 13 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/FloatAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Datastructures/AttributeTree/FloatAttribute.cs startLine: 18 @@ -156,8 +156,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/FloatAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Datastructures/AttributeTree/FloatAttribute.cs startLine: 23 @@ -188,8 +188,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/FloatAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAttributeId path: Datastructures/AttributeTree/FloatAttribute.cs startLine: 28 @@ -219,8 +219,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/FloatAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToJsonToken path: Datastructures/AttributeTree/FloatAttribute.cs startLine: 33 @@ -251,8 +251,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/FloatAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Datastructures/AttributeTree/FloatAttribute.cs startLine: 38 @@ -283,8 +283,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/FloatAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Datastructures/AttributeTree/FloatAttribute.cs startLine: 43 diff --git a/api/Vintagestory.API.Datastructures.FloatDataMap3D.yml b/api/Vintagestory.API.Datastructures.FloatDataMap3D.yml index 0c5eaa42..b7215856 100644 --- a/api/Vintagestory.API.Datastructures.FloatDataMap3D.yml +++ b/api/Vintagestory.API.Datastructures.FloatDataMap3D.yml @@ -26,8 +26,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FloatDataMap3D.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FloatDataMap3D path: Datastructures/FloatDataMap3D.cs startLine: 10 @@ -76,8 +76,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FloatDataMap3D.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Data path: Datastructures/FloatDataMap3D.cs startLine: 14 @@ -115,8 +115,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FloatDataMap3D.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Width path: Datastructures/FloatDataMap3D.cs startLine: 16 @@ -154,8 +154,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FloatDataMap3D.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Length path: Datastructures/FloatDataMap3D.cs startLine: 18 @@ -193,8 +193,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FloatDataMap3D.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Height path: Datastructures/FloatDataMap3D.cs startLine: 20 @@ -232,8 +232,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FloatDataMap3D.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/FloatDataMap3D.cs startLine: 22 @@ -261,8 +261,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FloatDataMap3D.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/FloatDataMap3D.cs startLine: 28 @@ -297,8 +297,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FloatDataMap3D.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Datastructures/FloatDataMap3D.cs startLine: 37 @@ -335,8 +335,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FloatDataMap3D.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Datastructures/FloatDataMap3D.cs startLine: 42 @@ -373,8 +373,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FloatDataMap3D.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddValue path: Datastructures/FloatDataMap3D.cs startLine: 47 @@ -411,8 +411,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FloatDataMap3D.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetLerped path: Datastructures/FloatDataMap3D.cs startLine: 53 @@ -449,8 +449,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/FloatDataMap3D.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetLerpedCenterPixel path: Datastructures/FloatDataMap3D.cs startLine: 87 diff --git a/api/Vintagestory.API.Datastructures.IAttribute.yml b/api/Vintagestory.API.Datastructures.IAttribute.yml index e690c338..d7d4fe59 100644 --- a/api/Vintagestory.API.Datastructures.IAttribute.yml +++ b/api/Vintagestory.API.Datastructures.IAttribute.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/IAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IAttribute path: Datastructures/AttributeTree/Other/IAttribute.cs startLine: 9 @@ -50,8 +50,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/IAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Datastructures/AttributeTree/Other/IAttribute.cs startLine: 11 @@ -79,8 +79,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/IAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Datastructures/AttributeTree/Other/IAttribute.cs startLine: 12 @@ -108,8 +108,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/IAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAttributeId path: Datastructures/AttributeTree/Other/IAttribute.cs startLine: 14 @@ -136,8 +136,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/IAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetType path: Datastructures/AttributeTree/Other/IAttribute.cs startLine: 16 @@ -164,8 +164,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/IAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Datastructures/AttributeTree/Other/IAttribute.cs startLine: 17 @@ -192,8 +192,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/IAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToJsonToken path: Datastructures/AttributeTree/Other/IAttribute.cs startLine: 18 @@ -220,8 +220,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/IAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Datastructures/AttributeTree/Other/IAttribute.cs startLine: 20 @@ -253,8 +253,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/IAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Datastructures/AttributeTree/Other/IAttribute.cs startLine: 21 diff --git a/api/Vintagestory.API.Datastructures.IMergeable-1.yml b/api/Vintagestory.API.Datastructures.IMergeable-1.yml index 499439bc..a2d483e2 100644 --- a/api/Vintagestory.API.Datastructures.IMergeable-1.yml +++ b/api/Vintagestory.API.Datastructures.IMergeable-1.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/IMergeable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IMergeable path: Datastructures/IMergeable.cs startLine: 2 @@ -46,8 +46,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/IMergeable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MergeIfEqual path: Datastructures/IMergeable.cs startLine: 4 diff --git a/api/Vintagestory.API.Datastructures.IOrderedDictionary-2.yml b/api/Vintagestory.API.Datastructures.IOrderedDictionary-2.yml index 622979e9..97281465 100644 --- a/api/Vintagestory.API.Datastructures.IOrderedDictionary-2.yml +++ b/api/Vintagestory.API.Datastructures.IOrderedDictionary-2.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/IOrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IOrderedDictionary path: Datastructures/Dictionary/IOrderedDictionary.cs startLine: 10 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/IOrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Datastructures/Dictionary/IOrderedDictionary.cs startLine: 13 @@ -131,8 +131,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/IOrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Insert path: Datastructures/Dictionary/IOrderedDictionary.cs startLine: 16 @@ -167,8 +167,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/IOrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValueAtIndex path: Datastructures/Dictionary/IOrderedDictionary.cs startLine: 18 @@ -201,8 +201,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/IOrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetAtIndex path: Datastructures/Dictionary/IOrderedDictionary.cs startLine: 20 diff --git a/api/Vintagestory.API.Datastructures.ITreeAttribute.yml b/api/Vintagestory.API.Datastructures.ITreeAttribute.yml index bf081c62..8185b264 100644 --- a/api/Vintagestory.API.Datastructures.ITreeAttribute.yml +++ b/api/Vintagestory.API.Datastructures.ITreeAttribute.yml @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ITreeAttribute path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 9 @@ -100,8 +100,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 16 @@ -138,8 +138,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Count path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 21 @@ -169,8 +169,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Values path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 26 @@ -200,8 +200,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HasAttribute path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 33 @@ -238,8 +238,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveAttribute path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 40 @@ -273,8 +273,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetBool path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 47 @@ -311,8 +311,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetInt path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 54 @@ -349,8 +349,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetLong path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 61 @@ -387,8 +387,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetDouble path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 68 @@ -425,8 +425,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetFloat path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 76 @@ -463,8 +463,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetString path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 83 @@ -501,8 +501,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetBytes path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 90 @@ -539,8 +539,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetItemstack path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 97 @@ -577,8 +577,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryGetBool path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 104 @@ -615,8 +615,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBool path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 112 @@ -656,8 +656,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryGetInt path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 119 @@ -694,8 +694,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetInt path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 127 @@ -735,8 +735,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAsInt path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 135 @@ -776,8 +776,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAsBool path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 143 @@ -817,8 +817,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDecimal path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 151 @@ -858,8 +858,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAsString path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 159 @@ -899,8 +899,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryGetLong path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 166 @@ -937,8 +937,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetLong path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 174 @@ -978,8 +978,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryGetFloat path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 181 @@ -1016,8 +1016,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetFloat path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 189 @@ -1057,8 +1057,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryGetDouble path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 196 @@ -1095,8 +1095,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDouble path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 204 @@ -1136,8 +1136,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetString path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 212 @@ -1177,8 +1177,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBytes path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 220 @@ -1218,8 +1218,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetItemstack path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 228 @@ -1259,8 +1259,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetTreeAttribute path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 235 @@ -1297,8 +1297,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetOrAddTreeAttribute path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 243 @@ -1338,8 +1338,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 249 @@ -1369,8 +1369,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MergeTree path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 255 @@ -1401,8 +1401,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SortedCopy path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 262 @@ -1439,8 +1439,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 264 @@ -1477,8 +1477,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsSubSetOf path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 265 @@ -1510,8 +1510,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ITreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHashCode path: Datastructures/AttributeTree/ITreeAttribute.cs startLine: 267 diff --git a/api/Vintagestory.API.Datastructures.IntArrayAttribute.yml b/api/Vintagestory.API.Datastructures.IntArrayAttribute.yml index 401538c1..381a5f39 100644 --- a/api/Vintagestory.API.Datastructures.IntArrayAttribute.yml +++ b/api/Vintagestory.API.Datastructures.IntArrayAttribute.yml @@ -27,8 +27,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/IntArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IntArrayAttribute path: Datastructures/AttributeTree/IntArrayAttribute.cs startLine: 5 @@ -69,8 +69,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/IntArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/AttributeTree/IntArrayAttribute.cs startLine: 7 @@ -98,8 +98,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/IntArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/AttributeTree/IntArrayAttribute.cs startLine: 12 @@ -130,8 +130,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/IntArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/AttributeTree/IntArrayAttribute.cs startLine: 17 @@ -162,8 +162,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/IntArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/AttributeTree/IntArrayAttribute.cs startLine: 26 @@ -194,8 +194,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/IntArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AsUShort path: Datastructures/AttributeTree/IntArrayAttribute.cs startLine: 35 @@ -223,8 +223,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/IntArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AsUint path: Datastructures/AttributeTree/IntArrayAttribute.cs startLine: 48 @@ -252,8 +252,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/IntArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Datastructures/AttributeTree/IntArrayAttribute.cs startLine: 62 @@ -284,8 +284,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/IntArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Datastructures/AttributeTree/IntArrayAttribute.cs startLine: 72 @@ -316,8 +316,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/IntArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAttributeId path: Datastructures/AttributeTree/IntArrayAttribute.cs startLine: 83 @@ -347,8 +347,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/IntArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddInt path: Datastructures/AttributeTree/IntArrayAttribute.cs startLine: 88 @@ -379,8 +379,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/IntArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveInt path: Datastructures/AttributeTree/IntArrayAttribute.cs startLine: 99 @@ -411,8 +411,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/IntArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Datastructures/AttributeTree/IntArrayAttribute.cs startLine: 104 diff --git a/api/Vintagestory.API.Datastructures.IntAttribute.yml b/api/Vintagestory.API.Datastructures.IntAttribute.yml index 8e1a816d..f09f7644 100644 --- a/api/Vintagestory.API.Datastructures.IntAttribute.yml +++ b/api/Vintagestory.API.Datastructures.IntAttribute.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/IntAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IntAttribute path: Datastructures/AttributeTree/IntAttribute.cs startLine: 4 @@ -63,8 +63,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/IntAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/AttributeTree/IntAttribute.cs startLine: 6 @@ -92,8 +92,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/IntAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/AttributeTree/IntAttribute.cs startLine: 11 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/IntAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Datastructures/AttributeTree/IntAttribute.cs startLine: 16 @@ -156,8 +156,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/IntAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Datastructures/AttributeTree/IntAttribute.cs startLine: 21 @@ -188,8 +188,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/IntAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAttributeId path: Datastructures/AttributeTree/IntAttribute.cs startLine: 26 @@ -219,8 +219,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/IntAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Datastructures/AttributeTree/IntAttribute.cs startLine: 31 diff --git a/api/Vintagestory.API.Datastructures.IntDataMap2D.yml b/api/Vintagestory.API.Datastructures.IntDataMap2D.yml index 9da9a6a6..33855f28 100644 --- a/api/Vintagestory.API.Datastructures.IntDataMap2D.yml +++ b/api/Vintagestory.API.Datastructures.IntDataMap2D.yml @@ -30,8 +30,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/IntDataMap2D.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IntDataMap2D path: Datastructures/IntDataMap2D.cs startLine: 10 @@ -80,8 +80,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/IntDataMap2D.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Data path: Datastructures/IntDataMap2D.cs startLine: 14 @@ -123,8 +123,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/IntDataMap2D.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Size path: Datastructures/IntDataMap2D.cs startLine: 20 @@ -164,8 +164,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/IntDataMap2D.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TopLeftPadding path: Datastructures/IntDataMap2D.cs startLine: 26 @@ -205,8 +205,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/IntDataMap2D.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BottomRightPadding path: Datastructures/IntDataMap2D.cs startLine: 32 @@ -246,8 +246,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/IntDataMap2D.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InnerSize path: Datastructures/IntDataMap2D.cs startLine: 37 @@ -277,8 +277,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/IntDataMap2D.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateEmpty path: Datastructures/IntDataMap2D.cs startLine: 42 @@ -305,8 +305,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/IntDataMap2D.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetInt path: Datastructures/IntDataMap2D.cs startLine: 53 @@ -341,8 +341,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/IntDataMap2D.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetInt path: Datastructures/IntDataMap2D.cs startLine: 58 @@ -377,8 +377,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/IntDataMap2D.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetUnpaddedInt path: Datastructures/IntDataMap2D.cs startLine: 63 @@ -413,8 +413,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/IntDataMap2D.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetUnpaddedColorLerped path: Datastructures/IntDataMap2D.cs startLine: 68 @@ -449,8 +449,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/IntDataMap2D.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetUnpaddedColorLerpedForNormalizedPos path: Datastructures/IntDataMap2D.cs startLine: 89 @@ -490,8 +490,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/IntDataMap2D.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetUnpaddedIntLerpedForBlockPos path: Datastructures/IntDataMap2D.cs startLine: 95 @@ -528,8 +528,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/IntDataMap2D.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetUnpaddedIntLerped path: Datastructures/IntDataMap2D.cs startLine: 104 @@ -564,8 +564,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/IntDataMap2D.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetIntLerpedCorrectly path: Datastructures/IntDataMap2D.cs startLine: 119 @@ -600,8 +600,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/IntDataMap2D.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetColorLerpedCorrectly path: Datastructures/IntDataMap2D.cs startLine: 137 diff --git a/api/Vintagestory.API.Datastructures.IntRef.yml b/api/Vintagestory.API.Datastructures.IntRef.yml index eb5f87fa..16f65a8a 100644 --- a/api/Vintagestory.API.Datastructures.IntRef.yml +++ b/api/Vintagestory.API.Datastructures.IntRef.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/BoolRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IntRef path: Datastructures/BoolRef.cs startLine: 2 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/BoolRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Create path: Datastructures/BoolRef.cs startLine: 4 @@ -87,8 +87,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/BoolRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Datastructures/BoolRef.cs startLine: 11 @@ -115,8 +115,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/BoolRef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetValue path: Datastructures/BoolRef.cs startLine: 12 diff --git a/api/Vintagestory.API.Datastructures.ItemstackAttribute.yml b/api/Vintagestory.API.Datastructures.ItemstackAttribute.yml index 500d2af3..a63b3b0e 100644 --- a/api/Vintagestory.API.Datastructures.ItemstackAttribute.yml +++ b/api/Vintagestory.API.Datastructures.ItemstackAttribute.yml @@ -26,8 +26,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ItemstackAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ItemstackAttribute path: Datastructures/AttributeTree/ItemstackAttribute.cs startLine: 5 @@ -62,8 +62,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ItemstackAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: value path: Datastructures/AttributeTree/ItemstackAttribute.cs startLine: 7 @@ -89,8 +89,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ItemstackAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/AttributeTree/ItemstackAttribute.cs startLine: 9 @@ -118,8 +118,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ItemstackAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/AttributeTree/ItemstackAttribute.cs startLine: 14 @@ -150,8 +150,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ItemstackAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAttributeId path: Datastructures/AttributeTree/ItemstackAttribute.cs startLine: 19 @@ -181,8 +181,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ItemstackAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Datastructures/AttributeTree/ItemstackAttribute.cs startLine: 24 @@ -212,8 +212,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ItemstackAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Datastructures/AttributeTree/ItemstackAttribute.cs startLine: 30 @@ -244,8 +244,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ItemstackAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Datastructures/AttributeTree/ItemstackAttribute.cs startLine: 41 @@ -276,8 +276,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ItemstackAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Datastructures/AttributeTree/ItemstackAttribute.cs startLine: 47 @@ -312,8 +312,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ItemstackAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToJsonToken path: Datastructures/AttributeTree/ItemstackAttribute.cs startLine: 64 @@ -343,8 +343,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ItemstackAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHashCode path: Datastructures/AttributeTree/ItemstackAttribute.cs startLine: 80 @@ -375,8 +375,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/ItemstackAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Datastructures/AttributeTree/ItemstackAttribute.cs startLine: 85 diff --git a/api/Vintagestory.API.Datastructures.JsonObject.yml b/api/Vintagestory.API.Datastructures.JsonObject.yml index 6ebadcbc..a9b48579 100644 --- a/api/Vintagestory.API.Datastructures.JsonObject.yml +++ b/api/Vintagestory.API.Datastructures.JsonObject.yml @@ -41,8 +41,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/JsonObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: JsonObject path: Datastructures/JsonObject.cs startLine: 12 @@ -77,8 +77,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/JsonObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromJson path: Datastructures/JsonObject.cs startLine: 16 @@ -111,8 +111,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/JsonObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/JsonObject.cs startLine: 25 @@ -146,8 +146,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/JsonObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/JsonObject.cs startLine: 34 @@ -184,8 +184,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/JsonObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Datastructures/JsonObject.cs startLine: 44 @@ -222,8 +222,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/JsonObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Exists path: Datastructures/JsonObject.cs startLine: 57 @@ -253,8 +253,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/JsonObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Token path: Datastructures/JsonObject.cs startLine: 62 @@ -282,8 +282,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/JsonObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: KeyExists path: Datastructures/JsonObject.cs startLine: 72 @@ -320,8 +320,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/JsonObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AsObject path: Datastructures/JsonObject.cs startLine: 82 @@ -360,8 +360,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/JsonObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AsObject path: Datastructures/JsonObject.cs startLine: 94 @@ -402,8 +402,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/JsonObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AsObject path: Datastructures/JsonObject.cs startLine: 107 @@ -442,8 +442,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/JsonObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AsArray path: Datastructures/JsonObject.cs startLine: 126 @@ -473,8 +473,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/JsonObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AsString path: Datastructures/JsonObject.cs startLine: 146 @@ -511,8 +511,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/JsonObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AsStringArray path: Datastructures/JsonObject.cs startLine: 151 @@ -559,8 +559,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/JsonObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AsFloatArray path: Datastructures/JsonObject.cs startLine: 157 @@ -605,8 +605,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/JsonObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AsArray path: Datastructures/JsonObject.cs startLine: 169 @@ -648,8 +648,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/JsonObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AsBool path: Datastructures/JsonObject.cs startLine: 197 @@ -686,8 +686,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/JsonObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AsInt path: Datastructures/JsonObject.cs startLine: 223 @@ -724,8 +724,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/JsonObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AsFloat path: Datastructures/JsonObject.cs startLine: 251 @@ -762,8 +762,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/JsonObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AsDouble path: Datastructures/JsonObject.cs startLine: 280 @@ -800,8 +800,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/JsonObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Datastructures/JsonObject.cs startLine: 317 @@ -832,8 +832,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/JsonObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsArray path: Datastructures/JsonObject.cs startLine: 326 @@ -863,8 +863,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/JsonObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToAttribute path: Datastructures/JsonObject.cs startLine: 336 @@ -897,8 +897,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/JsonObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FillPlaceHolder path: Datastructures/JsonObject.cs startLine: 341 @@ -931,8 +931,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/JsonObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToPrimitiveArray path: Datastructures/JsonObject.cs startLine: 461 @@ -972,8 +972,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/JsonObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Datastructures/JsonObject.cs startLine: 477 @@ -1003,8 +1003,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/JsonObject.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsTrue path: Datastructures/JsonObject.cs startLine: 487 diff --git a/api/Vintagestory.API.Datastructures.JsonTreeAttribute.yml b/api/Vintagestory.API.Datastructures.JsonTreeAttribute.yml index 69a97aff..46a0e580 100644 --- a/api/Vintagestory.API.Datastructures.JsonTreeAttribute.yml +++ b/api/Vintagestory.API.Datastructures.JsonTreeAttribute.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/JsonTreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: JsonTreeAttribute path: Datastructures/AttributeTree/Other/JsonTreeAttribute.cs startLine: 8 @@ -56,8 +56,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/JsonTreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: value path: Datastructures/AttributeTree/Other/JsonTreeAttribute.cs startLine: 10 @@ -83,8 +83,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/JsonTreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: values path: Datastructures/AttributeTree/Other/JsonTreeAttribute.cs startLine: 11 @@ -110,8 +110,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/JsonTreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: elems path: Datastructures/AttributeTree/Other/JsonTreeAttribute.cs startLine: 13 @@ -137,8 +137,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/JsonTreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: type path: Datastructures/AttributeTree/Other/JsonTreeAttribute.cs startLine: 14 @@ -164,8 +164,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/JsonTreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToAttribute path: Datastructures/AttributeTree/Other/JsonTreeAttribute.cs startLine: 17 @@ -195,8 +195,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/JsonTreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Datastructures/AttributeTree/Other/JsonTreeAttribute.cs startLine: 132 diff --git a/api/Vintagestory.API.Datastructures.LimitedDictionary-2.yml b/api/Vintagestory.API.Datastructures.LimitedDictionary-2.yml index 9865536f..6ba29599 100644 --- a/api/Vintagestory.API.Datastructures.LimitedDictionary-2.yml +++ b/api/Vintagestory.API.Datastructures.LimitedDictionary-2.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/LimitedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LimitedDictionary path: Datastructures/Dictionary/LimitedDictionary.cs startLine: 9 @@ -64,8 +64,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/LimitedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/Dictionary/LimitedDictionary.cs startLine: 19 @@ -99,8 +99,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/LimitedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Datastructures/Dictionary/LimitedDictionary.cs startLine: 26 @@ -132,8 +132,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/LimitedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Datastructures/Dictionary/LimitedDictionary.cs startLine: 38 @@ -166,8 +166,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/LimitedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Count path: Datastructures/Dictionary/LimitedDictionary.cs startLine: 62 diff --git a/api/Vintagestory.API.Datastructures.LimitedList-1.yml b/api/Vintagestory.API.Datastructures.LimitedList-1.yml index 59d8409f..815082bd 100644 --- a/api/Vintagestory.API.Datastructures.LimitedList-1.yml +++ b/api/Vintagestory.API.Datastructures.LimitedList-1.yml @@ -27,8 +27,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/LimitedList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LimitedList path: Datastructures/LimitedList.cs startLine: 8 @@ -76,8 +76,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/LimitedList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/LimitedList.cs startLine: 17 @@ -111,8 +111,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/LimitedList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/LimitedList.cs startLine: 28 @@ -149,8 +149,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/LimitedList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Datastructures/LimitedList.cs startLine: 41 @@ -180,8 +180,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/LimitedList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Datastructures/LimitedList.cs startLine: 50 @@ -214,8 +214,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/LimitedList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetCapacity path: Datastructures/LimitedList.cs startLine: 58 @@ -246,8 +246,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/LimitedList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clear path: Datastructures/LimitedList.cs startLine: 63 @@ -274,8 +274,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/LimitedList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Count path: Datastructures/LimitedList.cs startLine: 68 @@ -305,8 +305,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/LimitedList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveAt path: Datastructures/LimitedList.cs startLine: 73 @@ -337,8 +337,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/LimitedList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LastElement path: Datastructures/LimitedList.cs startLine: 78 @@ -367,8 +367,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/LimitedList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsFull path: Datastructures/LimitedList.cs startLine: 84 @@ -397,8 +397,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/LimitedList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetEnumerator path: Datastructures/LimitedList.cs startLine: 89 @@ -432,8 +432,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/LimitedList.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToArray path: Datastructures/LimitedList.cs startLine: 94 diff --git a/api/Vintagestory.API.Datastructures.ListDictionary-2.yml b/api/Vintagestory.API.Datastructures.ListDictionary-2.yml index 7ebb96ad..075f9353 100644 --- a/api/Vintagestory.API.Datastructures.ListDictionary-2.yml +++ b/api/Vintagestory.API.Datastructures.ListDictionary-2.yml @@ -29,8 +29,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/ListDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ListDictionary path: Datastructures/Dictionary/ListDictionary.cs startLine: 4 @@ -110,8 +110,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/ListDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/Dictionary/ListDictionary.cs startLine: 7 @@ -139,8 +139,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/ListDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/Dictionary/ListDictionary.cs startLine: 9 @@ -171,8 +171,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/ListDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/Dictionary/ListDictionary.cs startLine: 11 @@ -203,8 +203,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/ListDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/Dictionary/ListDictionary.cs startLine: 13 @@ -235,8 +235,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/ListDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/Dictionary/ListDictionary.cs startLine: 15 @@ -269,8 +269,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/ListDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/Dictionary/ListDictionary.cs startLine: 17 @@ -303,8 +303,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/ListDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Datastructures/Dictionary/ListDictionary.cs startLine: 19 @@ -336,8 +336,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/ListDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetEquivalent path: Datastructures/Dictionary/ListDictionary.cs startLine: 30 @@ -371,8 +371,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/ListDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ContainsValue path: Datastructures/Dictionary/ListDictionary.cs startLine: 40 @@ -406,8 +406,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/ListDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ContainsValue path: Datastructures/Dictionary/ListDictionary.cs startLine: 45 @@ -439,8 +439,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/ListDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClearKey path: Datastructures/Dictionary/ListDictionary.cs startLine: 55 @@ -470,8 +470,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/ListDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Remove path: Datastructures/Dictionary/ListDictionary.cs startLine: 60 @@ -505,8 +505,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/ListDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Remove path: Datastructures/Dictionary/ListDictionary.cs startLine: 65 @@ -538,8 +538,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/ListDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetKeyOfValue path: Datastructures/Dictionary/ListDictionary.cs startLine: 75 diff --git a/api/Vintagestory.API.Datastructures.LongArrayAttribute.yml b/api/Vintagestory.API.Datastructures.LongArrayAttribute.yml index f8be075a..ab44b7e0 100644 --- a/api/Vintagestory.API.Datastructures.LongArrayAttribute.yml +++ b/api/Vintagestory.API.Datastructures.LongArrayAttribute.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/LongArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LongArrayAttribute path: Datastructures/AttributeTree/LongArrayAttribute.cs startLine: 4 @@ -64,8 +64,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/LongArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/AttributeTree/LongArrayAttribute.cs startLine: 6 @@ -93,8 +93,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/LongArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/AttributeTree/LongArrayAttribute.cs startLine: 11 @@ -125,8 +125,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/LongArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Datastructures/AttributeTree/LongArrayAttribute.cs startLine: 16 @@ -157,8 +157,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/LongArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Datastructures/AttributeTree/LongArrayAttribute.cs startLine: 26 @@ -189,8 +189,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/LongArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AsUint path: Datastructures/AttributeTree/LongArrayAttribute.cs startLine: 37 @@ -218,8 +218,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/LongArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAttributeId path: Datastructures/AttributeTree/LongArrayAttribute.cs startLine: 52 @@ -249,8 +249,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/LongArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Datastructures/AttributeTree/LongArrayAttribute.cs startLine: 57 diff --git a/api/Vintagestory.API.Datastructures.LongAttribute.yml b/api/Vintagestory.API.Datastructures.LongAttribute.yml index f9a453ef..9b9670ff 100644 --- a/api/Vintagestory.API.Datastructures.LongAttribute.yml +++ b/api/Vintagestory.API.Datastructures.LongAttribute.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/LongAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LongAttribute path: Datastructures/AttributeTree/LongAttribute.cs startLine: 4 @@ -63,8 +63,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/LongAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/AttributeTree/LongAttribute.cs startLine: 6 @@ -92,8 +92,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/LongAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/AttributeTree/LongAttribute.cs startLine: 11 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/LongAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Datastructures/AttributeTree/LongAttribute.cs startLine: 16 @@ -156,8 +156,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/LongAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Datastructures/AttributeTree/LongAttribute.cs startLine: 21 @@ -188,8 +188,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/LongAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAttributeId path: Datastructures/AttributeTree/LongAttribute.cs startLine: 26 @@ -219,8 +219,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/LongAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Datastructures/AttributeTree/LongAttribute.cs startLine: 31 diff --git a/api/Vintagestory.API.Datastructures.OrderedDictionary-2.yml b/api/Vintagestory.API.Datastructures.OrderedDictionary-2.yml index dddd35c1..dd8ce37f 100644 --- a/api/Vintagestory.API.Datastructures.OrderedDictionary-2.yml +++ b/api/Vintagestory.API.Datastructures.OrderedDictionary-2.yml @@ -45,8 +45,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/OrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OrderedDictionary path: Datastructures/Dictionary/OrderedDictionary.cs startLine: 18 @@ -119,8 +119,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/OrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InternalDictionary path: Datastructures/Dictionary/OrderedDictionary.cs startLine: 34 @@ -150,8 +150,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/OrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/Dictionary/OrderedDictionary.cs startLine: 36 @@ -179,8 +179,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/OrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/Dictionary/OrderedDictionary.cs startLine: 39 @@ -211,8 +211,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/OrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/Dictionary/OrderedDictionary.cs startLine: 42 @@ -243,8 +243,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/OrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/Dictionary/OrderedDictionary.cs startLine: 46 @@ -277,8 +277,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/OrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/Dictionary/OrderedDictionary.cs startLine: 55 @@ -309,8 +309,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/OrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnDeserializedMethod path: Datastructures/Dictionary/OrderedDictionary.cs startLine: 63 @@ -350,8 +350,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/OrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeforeSerialization path: Datastructures/Dictionary/OrderedDictionary.cs startLine: 75 @@ -388,8 +388,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/OrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/Dictionary/OrderedDictionary.cs startLine: 82 @@ -420,8 +420,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/OrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Insert path: Datastructures/Dictionary/OrderedDictionary.cs startLine: 116 @@ -456,8 +456,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/OrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InsertBefore path: Datastructures/Dictionary/OrderedDictionary.cs startLine: 125 @@ -491,8 +491,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/OrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveAt path: Datastructures/Dictionary/OrderedDictionary.cs startLine: 138 @@ -523,8 +523,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/OrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValueAtIndex path: Datastructures/Dictionary/OrderedDictionary.cs startLine: 149 @@ -557,8 +557,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/OrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetKeyAtIndex path: Datastructures/Dictionary/OrderedDictionary.cs startLine: 154 @@ -591,8 +591,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/OrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetAtIndex path: Datastructures/Dictionary/OrderedDictionary.cs startLine: 159 @@ -625,8 +625,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/OrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Datastructures/Dictionary/OrderedDictionary.cs startLine: 173 @@ -660,8 +660,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/OrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clear path: Datastructures/Dictionary/OrderedDictionary.cs startLine: 180 @@ -696,8 +696,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/OrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ContainsKey path: Datastructures/Dictionary/OrderedDictionary.cs startLine: 186 @@ -739,8 +739,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/OrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IndexOfKey path: Datastructures/Dictionary/OrderedDictionary.cs startLine: 197 @@ -776,8 +776,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/OrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Remove path: Datastructures/Dictionary/OrderedDictionary.cs startLine: 225 @@ -822,8 +822,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/OrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Datastructures/Dictionary/OrderedDictionary.cs startLine: 246 @@ -872,8 +872,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/OrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Count path: Datastructures/Dictionary/OrderedDictionary.cs startLine: 272 @@ -908,8 +908,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/OrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Keys path: Datastructures/Dictionary/OrderedDictionary.cs startLine: 281 @@ -944,8 +944,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/OrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ValuesOrdered path: Datastructures/Dictionary/OrderedDictionary.cs startLine: 289 @@ -975,8 +975,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/OrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryGetValue path: Datastructures/Dictionary/OrderedDictionary.cs startLine: 298 @@ -1022,8 +1022,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/OrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryGetValue path: Datastructures/Dictionary/OrderedDictionary.cs startLine: 303 @@ -1055,8 +1055,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/OrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Values path: Datastructures/Dictionary/OrderedDictionary.cs startLine: 313 @@ -1090,8 +1090,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/OrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsReadOnly path: Datastructures/Dictionary/OrderedDictionary.cs startLine: 321 @@ -1126,8 +1126,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/OrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetEnumerator path: Datastructures/Dictionary/OrderedDictionary.cs startLine: 345 @@ -1156,8 +1156,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/OrderedDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ContainsValue path: Datastructures/Dictionary/OrderedDictionary.cs startLine: 391 diff --git a/api/Vintagestory.API.Datastructures.QueueOfInt.yml b/api/Vintagestory.API.Datastructures.QueueOfInt.yml index 1a8a8198..b45031ca 100644 --- a/api/Vintagestory.API.Datastructures.QueueOfInt.yml +++ b/api/Vintagestory.API.Datastructures.QueueOfInt.yml @@ -28,8 +28,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/QueueOfInt.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: QueueOfInt path: Datastructures/QueueOfInt.cs startLine: 4 @@ -63,8 +63,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/QueueOfInt.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Count path: Datastructures/QueueOfInt.cs startLine: 6 @@ -90,8 +90,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/QueueOfInt.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: maxSize path: Datastructures/QueueOfInt.cs startLine: 7 @@ -117,8 +117,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/QueueOfInt.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: tail path: Datastructures/QueueOfInt.cs startLine: 8 @@ -144,8 +144,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/QueueOfInt.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: head path: Datastructures/QueueOfInt.cs startLine: 9 @@ -171,8 +171,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/QueueOfInt.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: array path: Datastructures/QueueOfInt.cs startLine: 10 @@ -198,8 +198,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/QueueOfInt.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/QueueOfInt.cs startLine: 12 @@ -227,8 +227,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/QueueOfInt.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clear path: Datastructures/QueueOfInt.cs startLine: 17 @@ -253,8 +253,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/QueueOfInt.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Enqueue path: Datastructures/QueueOfInt.cs startLine: 32 @@ -297,8 +297,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/QueueOfInt.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Enqueue path: Datastructures/QueueOfInt.cs startLine: 37 @@ -329,8 +329,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/QueueOfInt.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnqueueIfLarger path: Datastructures/QueueOfInt.cs startLine: 56 @@ -373,8 +373,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/QueueOfInt.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnqueueIfLarger path: Datastructures/QueueOfInt.cs startLine: 61 @@ -405,8 +405,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/QueueOfInt.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dequeue path: Datastructures/QueueOfInt.cs startLine: 111 @@ -436,8 +436,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/QueueOfInt.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DequeueLIFO path: Datastructures/QueueOfInt.cs startLine: 121 diff --git a/api/Vintagestory.API.Datastructures.Rectangled.yml b/api/Vintagestory.API.Datastructures.Rectangled.yml index 387746d6..12ddfe9f 100644 --- a/api/Vintagestory.API.Datastructures.Rectangled.yml +++ b/api/Vintagestory.API.Datastructures.Rectangled.yml @@ -24,8 +24,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectangled.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rectangled path: Math/Rectangle/Rectangled.cs startLine: 4 @@ -61,8 +61,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectangled.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X path: Math/Rectangle/Rectangled.cs startLine: 6 @@ -88,8 +88,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectangled.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y path: Math/Rectangle/Rectangled.cs startLine: 7 @@ -115,8 +115,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectangled.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Width path: Math/Rectangle/Rectangled.cs startLine: 8 @@ -142,8 +142,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectangled.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Height path: Math/Rectangle/Rectangled.cs startLine: 9 @@ -169,8 +169,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectangled.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Bottom path: Math/Rectangle/Rectangled.cs startLine: 11 @@ -197,8 +197,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectangled.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Rectangle/Rectangled.cs startLine: 16 @@ -226,8 +226,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectangled.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Rectangle/Rectangled.cs startLine: 21 @@ -260,8 +260,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectangled.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Rectangle/Rectangled.cs startLine: 27 @@ -298,8 +298,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectangled.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PointInside path: Math/Rectangle/Rectangled.cs startLine: 40 diff --git a/api/Vintagestory.API.Datastructures.Rectanglef.yml b/api/Vintagestory.API.Datastructures.Rectanglef.yml index a6fdcf55..735a518b 100644 --- a/api/Vintagestory.API.Datastructures.Rectanglef.yml +++ b/api/Vintagestory.API.Datastructures.Rectanglef.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rectanglef path: Math/Rectangle/Rectanglef.cs startLine: 2 @@ -58,8 +58,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X path: Math/Rectangle/Rectanglef.cs startLine: 4 @@ -85,8 +85,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y path: Math/Rectangle/Rectanglef.cs startLine: 5 @@ -112,8 +112,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Width path: Math/Rectangle/Rectanglef.cs startLine: 6 @@ -139,8 +139,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Height path: Math/Rectangle/Rectanglef.cs startLine: 7 @@ -166,8 +166,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Bottom path: Math/Rectangle/Rectanglef.cs startLine: 9 @@ -194,8 +194,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Rectangle/Rectanglef.cs startLine: 14 @@ -223,8 +223,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Rectangle/Rectanglef.cs startLine: 19 @@ -261,8 +261,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglef.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Create path: Math/Rectangle/Rectanglef.cs startLine: 27 diff --git a/api/Vintagestory.API.Datastructures.RingArray-1.yml b/api/Vintagestory.API.Datastructures.RingArray-1.yml index 59865b7e..ae42d5c4 100644 --- a/api/Vintagestory.API.Datastructures.RingArray-1.yml +++ b/api/Vintagestory.API.Datastructures.RingArray-1.yml @@ -25,8 +25,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/RingArray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RingArray path: Datastructures/RingArray.cs startLine: 6 @@ -72,8 +72,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/RingArray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/RingArray.cs startLine: 11 @@ -104,8 +104,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/RingArray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/RingArray.cs startLine: 16 @@ -138,8 +138,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/RingArray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Datastructures/RingArray.cs startLine: 28 @@ -172,8 +172,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/RingArray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EndPosition path: Datastructures/RingArray.cs startLine: 33 @@ -203,8 +203,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/RingArray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Values path: Datastructures/RingArray.cs startLine: 34 @@ -234,8 +234,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/RingArray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Length path: Datastructures/RingArray.cs startLine: 39 @@ -267,8 +267,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/RingArray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Datastructures/RingArray.cs startLine: 48 @@ -301,8 +301,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/RingArray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetEnumerator path: Datastructures/RingArray.cs startLine: 56 @@ -336,8 +336,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/RingArray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clear path: Datastructures/RingArray.cs startLine: 73 @@ -366,8 +366,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/RingArray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ResizeTo path: Datastructures/RingArray.cs startLine: 87 diff --git a/api/Vintagestory.API.Datastructures.RotatableCube.yml b/api/Vintagestory.API.Datastructures.RotatableCube.yml index db850a75..211b234b 100644 --- a/api/Vintagestory.API.Datastructures.RotatableCube.yml +++ b/api/Vintagestory.API.Datastructures.RotatableCube.yml @@ -24,8 +24,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/RotatableCube.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotatableCube path: Datastructures/RotatableCube.cs startLine: 4 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/RotatableCube.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotateX path: Datastructures/RotatableCube.cs startLine: 6 @@ -149,8 +149,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/RotatableCube.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotateY path: Datastructures/RotatableCube.cs startLine: 7 @@ -176,8 +176,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/RotatableCube.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotateZ path: Datastructures/RotatableCube.cs startLine: 8 @@ -203,8 +203,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/RotatableCube.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Origin path: Datastructures/RotatableCube.cs startLine: 10 @@ -230,8 +230,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/RotatableCube.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/RotatableCube.cs startLine: 13 @@ -259,8 +259,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/RotatableCube.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToHitboxCuboidi path: Datastructures/RotatableCube.cs startLine: 18 @@ -295,8 +295,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/RotatableCube.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/RotatableCube.cs startLine: 23 @@ -337,8 +337,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/RotatableCube.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotatedCopy path: Datastructures/RotatableCube.cs startLine: 28 @@ -365,8 +365,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/RotatableCube.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Datastructures/RotatableCube.cs startLine: 33 diff --git a/api/Vintagestory.API.Datastructures.ScalarAttribute-1.yml b/api/Vintagestory.API.Datastructures.ScalarAttribute-1.yml index 8ced598b..cdb3fa39 100644 --- a/api/Vintagestory.API.Datastructures.ScalarAttribute-1.yml +++ b/api/Vintagestory.API.Datastructures.ScalarAttribute-1.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/ScalarAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ScalarAttribute path: Datastructures/AttributeTree/Other/ScalarAttribute.cs startLine: 5 @@ -66,8 +66,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/ScalarAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: value path: Datastructures/AttributeTree/Other/ScalarAttribute.cs startLine: 7 @@ -95,8 +95,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/ScalarAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Datastructures/AttributeTree/Other/ScalarAttribute.cs startLine: 9 @@ -130,8 +130,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/ScalarAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Datastructures/AttributeTree/Other/ScalarAttribute.cs startLine: 14 @@ -168,8 +168,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/ScalarAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Datastructures/AttributeTree/Other/ScalarAttribute.cs startLine: 19 @@ -198,8 +198,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/ScalarAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Datastructures/AttributeTree/Other/ScalarAttribute.cs startLine: 24 @@ -232,8 +232,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/ScalarAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToJsonToken path: Datastructures/AttributeTree/Other/ScalarAttribute.cs startLine: 29 @@ -262,8 +262,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/ScalarAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHashCode path: Datastructures/AttributeTree/Other/ScalarAttribute.cs startLine: 34 diff --git a/api/Vintagestory.API.Datastructures.SmallBoolArray.yml b/api/Vintagestory.API.Datastructures.SmallBoolArray.yml index 38d1eb5f..30c66503 100644 --- a/api/Vintagestory.API.Datastructures.SmallBoolArray.yml +++ b/api/Vintagestory.API.Datastructures.SmallBoolArray.yml @@ -35,8 +35,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SmallBoolArray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SmallBoolArray path: Datastructures/SmallBoolArray.cs startLine: 9 @@ -69,8 +69,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SmallBoolArray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnAllSides path: Datastructures/SmallBoolArray.cs startLine: 11 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SmallBoolArray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/SmallBoolArray.cs startLine: 14 @@ -128,8 +128,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SmallBoolArray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/SmallBoolArray.cs startLine: 19 @@ -160,8 +160,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SmallBoolArray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/SmallBoolArray.cs startLine: 25 @@ -192,8 +192,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SmallBoolArray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Datastructures/SmallBoolArray.cs startLine: 31 @@ -226,8 +226,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SmallBoolArray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Datastructures/SmallBoolArray.cs startLine: 45 @@ -266,8 +266,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SmallBoolArray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Datastructures/SmallBoolArray.cs startLine: 46 @@ -304,8 +304,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SmallBoolArray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Equality path: Datastructures/SmallBoolArray.cs startLine: 48 @@ -340,8 +340,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SmallBoolArray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Inequality path: Datastructures/SmallBoolArray.cs startLine: 49 @@ -376,8 +376,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SmallBoolArray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Fill path: Datastructures/SmallBoolArray.cs startLine: 51 @@ -408,8 +408,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SmallBoolArray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToIntArray path: Datastructures/SmallBoolArray.cs startLine: 56 @@ -442,8 +442,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SmallBoolArray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Opposite path: Datastructures/SmallBoolArray.cs startLine: 64 @@ -476,8 +476,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SmallBoolArray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnSide path: Datastructures/SmallBoolArray.cs startLine: 69 @@ -507,8 +507,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SmallBoolArray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Any path: Datastructures/SmallBoolArray.cs startLine: 74 @@ -536,8 +536,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SmallBoolArray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: All path: Datastructures/SmallBoolArray.cs startLine: 76 @@ -565,8 +565,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SmallBoolArray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Value path: Datastructures/SmallBoolArray.cs startLine: 78 @@ -593,8 +593,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SmallBoolArray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SidesAndBase path: Datastructures/SmallBoolArray.cs startLine: 83 @@ -622,8 +622,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SmallBoolArray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Horizontals path: Datastructures/SmallBoolArray.cs startLine: 85 @@ -651,8 +651,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SmallBoolArray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Verticals path: Datastructures/SmallBoolArray.cs startLine: 87 @@ -680,8 +680,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SmallBoolArray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHashCode path: Datastructures/SmallBoolArray.cs startLine: 89 diff --git a/api/Vintagestory.API.Datastructures.SortableQueue-1.yml b/api/Vintagestory.API.Datastructures.SortableQueue-1.yml index b4a6c7b0..450bcaa2 100644 --- a/api/Vintagestory.API.Datastructures.SortableQueue-1.yml +++ b/api/Vintagestory.API.Datastructures.SortableQueue-1.yml @@ -28,8 +28,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SortableQueue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SortableQueue path: Datastructures/SortableQueue.cs startLine: 4 @@ -68,8 +68,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SortableQueue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Count path: Datastructures/SortableQueue.cs startLine: 6 @@ -97,8 +97,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SortableQueue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: maxSize path: Datastructures/SortableQueue.cs startLine: 7 @@ -126,8 +126,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SortableQueue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: tail path: Datastructures/SortableQueue.cs startLine: 8 @@ -155,8 +155,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SortableQueue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: head path: Datastructures/SortableQueue.cs startLine: 9 @@ -184,8 +184,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SortableQueue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: array path: Datastructures/SortableQueue.cs startLine: 10 @@ -213,8 +213,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SortableQueue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/SortableQueue.cs startLine: 12 @@ -242,8 +242,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SortableQueue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clear path: Datastructures/SortableQueue.cs startLine: 17 @@ -270,8 +270,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SortableQueue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Enqueue path: Datastructures/SortableQueue.cs startLine: 25 @@ -301,8 +301,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SortableQueue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnqueueOrMerge path: Datastructures/SortableQueue.cs startLine: 36 @@ -332,8 +332,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SortableQueue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dequeue path: Datastructures/SortableQueue.cs startLine: 64 @@ -365,8 +365,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SortableQueue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sort path: Datastructures/SortableQueue.cs startLine: 73 @@ -393,8 +393,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SortableQueue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RunForEach path: Datastructures/SortableQueue.cs startLine: 90 @@ -425,8 +425,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/SortableQueue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DequeueLIFO path: Datastructures/SortableQueue.cs startLine: 107 diff --git a/api/Vintagestory.API.Datastructures.StackMatrix4.yml b/api/Vintagestory.API.Datastructures.StackMatrix4.yml index 19d9dea9..4a5b2ab7 100644 --- a/api/Vintagestory.API.Datastructures.StackMatrix4.yml +++ b/api/Vintagestory.API.Datastructures.StackMatrix4.yml @@ -27,8 +27,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/StackMatrix4.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StackMatrix4 path: Datastructures/StackMatrix4.cs startLine: 5 @@ -62,8 +62,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/StackMatrix4.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Top path: Datastructures/StackMatrix4.cs startLine: 11 @@ -91,8 +91,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/StackMatrix4.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Count path: Datastructures/StackMatrix4.cs startLine: 16 @@ -120,8 +120,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/StackMatrix4.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/StackMatrix4.cs startLine: 21 @@ -152,8 +152,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/StackMatrix4.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PushIdentity path: Datastructures/StackMatrix4.cs startLine: 30 @@ -178,8 +178,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/StackMatrix4.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Push path: Datastructures/StackMatrix4.cs startLine: 38 @@ -210,8 +210,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/StackMatrix4.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Push path: Datastructures/StackMatrix4.cs startLine: 46 @@ -236,8 +236,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/StackMatrix4.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pop path: Datastructures/StackMatrix4.cs startLine: 55 @@ -264,8 +264,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/StackMatrix4.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clear path: Datastructures/StackMatrix4.cs startLine: 63 @@ -290,8 +290,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/StackMatrix4.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rotate path: Datastructures/StackMatrix4.cs startLine: 68 @@ -328,8 +328,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/StackMatrix4.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Translate path: Datastructures/StackMatrix4.cs startLine: 73 @@ -364,8 +364,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/StackMatrix4.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Scale path: Datastructures/StackMatrix4.cs startLine: 78 @@ -400,8 +400,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/StackMatrix4.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Translate path: Datastructures/StackMatrix4.cs startLine: 83 diff --git a/api/Vintagestory.API.Datastructures.StringArrayAttribute.yml b/api/Vintagestory.API.Datastructures.StringArrayAttribute.yml index 4587bf2e..2e87f8d8 100644 --- a/api/Vintagestory.API.Datastructures.StringArrayAttribute.yml +++ b/api/Vintagestory.API.Datastructures.StringArrayAttribute.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/StringArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StringArrayAttribute path: Datastructures/AttributeTree/StringArrayAttribute.cs startLine: 5 @@ -63,8 +63,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/StringArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/AttributeTree/StringArrayAttribute.cs startLine: 7 @@ -92,8 +92,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/StringArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/AttributeTree/StringArrayAttribute.cs startLine: 12 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/StringArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Datastructures/AttributeTree/StringArrayAttribute.cs startLine: 17 @@ -156,8 +156,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/StringArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Datastructures/AttributeTree/StringArrayAttribute.cs startLine: 27 @@ -188,8 +188,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/StringArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAttributeId path: Datastructures/AttributeTree/StringArrayAttribute.cs startLine: 38 @@ -219,8 +219,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/StringArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToJsonToken path: Datastructures/AttributeTree/StringArrayAttribute.cs startLine: 43 @@ -251,8 +251,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/StringArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Datastructures/AttributeTree/StringArrayAttribute.cs startLine: 59 diff --git a/api/Vintagestory.API.Datastructures.StringAttribute.yml b/api/Vintagestory.API.Datastructures.StringAttribute.yml index 7671fe3d..36f67dfc 100644 --- a/api/Vintagestory.API.Datastructures.StringAttribute.yml +++ b/api/Vintagestory.API.Datastructures.StringAttribute.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/StringAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StringAttribute path: Datastructures/AttributeTree/StringAttribute.cs startLine: 4 @@ -63,8 +63,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/StringAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/AttributeTree/StringAttribute.cs startLine: 6 @@ -92,8 +92,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/StringAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/AttributeTree/StringAttribute.cs startLine: 11 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/StringAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Datastructures/AttributeTree/StringAttribute.cs startLine: 16 @@ -156,8 +156,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/StringAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Datastructures/AttributeTree/StringAttribute.cs startLine: 22 @@ -188,8 +188,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/StringAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAttributeId path: Datastructures/AttributeTree/StringAttribute.cs startLine: 27 @@ -219,8 +219,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/StringAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToJsonToken path: Datastructures/AttributeTree/StringAttribute.cs startLine: 32 @@ -251,8 +251,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/StringAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Datastructures/AttributeTree/StringAttribute.cs startLine: 36 diff --git a/api/Vintagestory.API.Datastructures.SyncedTreeAttribute.yml b/api/Vintagestory.API.Datastructures.SyncedTreeAttribute.yml index 214beacc..7abf3dad 100644 --- a/api/Vintagestory.API.Datastructures.SyncedTreeAttribute.yml +++ b/api/Vintagestory.API.Datastructures.SyncedTreeAttribute.yml @@ -35,8 +35,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SyncedTreeAttribute path: Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs startLine: 14 @@ -140,8 +140,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnModified path: Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs startLine: 27 @@ -167,8 +167,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterModifiedListener path: Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs startLine: 29 @@ -201,8 +201,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UnregisterListener path: Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs startLine: 34 @@ -230,8 +230,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MarkAllDirty path: Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs startLine: 50 @@ -258,8 +258,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AllDirty path: Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs startLine: 61 @@ -287,8 +287,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PartialDirty path: Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs startLine: 66 @@ -316,8 +316,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MarkClean path: Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs startLine: 71 @@ -342,8 +342,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MarkPathDirty path: Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs startLine: 83 @@ -380,8 +380,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetInt path: Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs startLine: 114 @@ -422,8 +422,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetLong path: Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs startLine: 120 @@ -461,8 +461,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetFloat path: Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs startLine: 126 @@ -503,8 +503,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetBool path: Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs startLine: 132 @@ -542,8 +542,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetBytes path: Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs startLine: 138 @@ -581,8 +581,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetDouble path: Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs startLine: 144 @@ -620,8 +620,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetString path: Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs startLine: 150 @@ -659,8 +659,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetAttribute path: Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs startLine: 156 @@ -695,8 +695,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveAttribute path: Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs startLine: 162 @@ -731,8 +731,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DirtyPathData path: Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs startLine: 183 @@ -765,8 +765,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs startLine: 205 @@ -796,8 +796,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PartialUpdate path: Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs startLine: 215 diff --git a/api/Vintagestory.API.Datastructures.TreeArrayAttribute.yml b/api/Vintagestory.API.Datastructures.TreeArrayAttribute.yml index cc8e6bc6..6df0a9b9 100644 --- a/api/Vintagestory.API.Datastructures.TreeArrayAttribute.yml +++ b/api/Vintagestory.API.Datastructures.TreeArrayAttribute.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TreeArrayAttribute path: Datastructures/AttributeTree/TreeArrayAttribute.cs startLine: 4 @@ -63,8 +63,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/AttributeTree/TreeArrayAttribute.cs startLine: 6 @@ -92,8 +92,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/AttributeTree/TreeArrayAttribute.cs startLine: 11 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Datastructures/AttributeTree/TreeArrayAttribute.cs startLine: 16 @@ -156,8 +156,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Datastructures/AttributeTree/TreeArrayAttribute.cs startLine: 26 @@ -188,8 +188,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAttributeId path: Datastructures/AttributeTree/TreeArrayAttribute.cs startLine: 38 @@ -219,8 +219,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeArrayAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Datastructures/AttributeTree/TreeArrayAttribute.cs startLine: 43 diff --git a/api/Vintagestory.API.Datastructures.TreeAttribute.yml b/api/Vintagestory.API.Datastructures.TreeAttribute.yml index 4442d3ad..596fcd0e 100644 --- a/api/Vintagestory.API.Datastructures.TreeAttribute.yml +++ b/api/Vintagestory.API.Datastructures.TreeAttribute.yml @@ -81,8 +81,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TreeAttribute path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 83 @@ -134,8 +134,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: depth path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 85 @@ -161,8 +161,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AttributeIdMapping path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 87 @@ -188,8 +188,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: attributesLock path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 91 @@ -215,8 +215,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 98 @@ -255,8 +255,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Count path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 117 @@ -288,8 +288,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Values path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 125 @@ -321,8 +321,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Keys path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 130 @@ -350,8 +350,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterAttribute path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 157 @@ -384,8 +384,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 162 @@ -413,8 +413,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateFromBytes path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 167 @@ -447,8 +447,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 183 @@ -479,8 +479,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 212 @@ -507,8 +507,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 225 @@ -539,8 +539,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 237 @@ -571,8 +571,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAttributeId path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 255 @@ -602,8 +602,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IndexOf path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 261 @@ -636,8 +636,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetEnumerator path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 275 @@ -664,8 +664,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAttribute path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 294 @@ -698,8 +698,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HasAttribute path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 304 @@ -738,8 +738,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAttributeByPath path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 312 @@ -772,8 +772,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DeleteAttributeByPath path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 339 @@ -804,8 +804,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveAttribute path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 368 @@ -841,8 +841,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetBool path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 381 @@ -881,8 +881,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetInt path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 395 @@ -924,8 +924,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetLong path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 408 @@ -964,8 +964,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetDouble path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 421 @@ -1004,8 +1004,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetFloat path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 435 @@ -1047,8 +1047,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetString path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 443 @@ -1087,8 +1087,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetStringArray path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 451 @@ -1121,8 +1121,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetBytes path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 464 @@ -1161,8 +1161,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetAttribute path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 472 @@ -1195,8 +1195,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetItemstack path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 485 @@ -1235,8 +1235,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryGetBool path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 498 @@ -1275,8 +1275,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryGetInt path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 503 @@ -1315,8 +1315,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryGetDouble path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 513 @@ -1355,8 +1355,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryGetFloat path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 523 @@ -1395,8 +1395,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBool path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 534 @@ -1438,8 +1438,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetInt path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 546 @@ -1481,8 +1481,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAsInt path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 558 @@ -1524,8 +1524,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAsBool path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 563 @@ -1567,8 +1567,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDecimal path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 581 @@ -1610,8 +1610,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetDouble path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 599 @@ -1653,8 +1653,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetFloat path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 611 @@ -1696,8 +1696,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetString path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 624 @@ -1739,8 +1739,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetAsString path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 636 @@ -1782,8 +1782,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetStringArray path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 648 @@ -1823,8 +1823,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBytes path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 661 @@ -1866,8 +1866,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetTreeAttribute path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 672 @@ -1906,8 +1906,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetOrAddTreeAttribute path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 683 @@ -1949,8 +1949,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetItemstack path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 706 @@ -1992,8 +1992,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetLong path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 718 @@ -2035,8 +2035,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryGetLong path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 729 @@ -2075,8 +2075,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetModelTransform path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 734 @@ -2109,8 +2109,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetValue path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 780 @@ -2140,8 +2140,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 796 @@ -2173,8 +2173,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsSubSetOf path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 820 @@ -2213,8 +2213,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 850 @@ -2253,8 +2253,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 867 @@ -2294,8 +2294,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 872 @@ -2334,8 +2334,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToJsonToken path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 927 @@ -2365,8 +2365,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MergeTree path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 950 @@ -2399,8 +2399,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MergeTree path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 961 @@ -2430,8 +2430,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MergeAttribute path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 972 @@ -2466,8 +2466,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SortedCopy path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 1004 @@ -2506,8 +2506,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHashCode path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 1022 @@ -2538,8 +2538,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHashCode path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 1027 diff --git a/api/Vintagestory.API.Datastructures.TreeAttributeUtil.yml b/api/Vintagestory.API.Datastructures.TreeAttributeUtil.yml index 8f5e8c7c..7ddc2fe7 100644 --- a/api/Vintagestory.API.Datastructures.TreeAttributeUtil.yml +++ b/api/Vintagestory.API.Datastructures.TreeAttributeUtil.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TreeAttributeUtil path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 13 @@ -57,8 +57,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetVec3i path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 15 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlockPos path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 20 @@ -135,8 +135,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetVec3i path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 27 @@ -172,8 +172,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetBlockPos path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 34 @@ -209,8 +209,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetVec3is path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 41 @@ -248,8 +248,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/TreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetVec3is path: Datastructures/AttributeTree/TreeAttribute.cs startLine: 59 diff --git a/api/Vintagestory.API.Datastructures.TreeModifiedListener.yml b/api/Vintagestory.API.Datastructures.TreeModifiedListener.yml index 2be6f77c..8896d1ff 100644 --- a/api/Vintagestory.API.Datastructures.TreeModifiedListener.yml +++ b/api/Vintagestory.API.Datastructures.TreeModifiedListener.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TreeModifiedListener path: Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs startLine: 8 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: listener path: Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs startLine: 10 @@ -79,8 +79,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: path path: Datastructures/AttributeTree/Other/SyncedTreeAttribute.cs startLine: 11 diff --git a/api/Vintagestory.API.Datastructures.UniqueQueue-1.yml b/api/Vintagestory.API.Datastructures.UniqueQueue-1.yml index fc87baa9..82167615 100644 --- a/api/Vintagestory.API.Datastructures.UniqueQueue-1.yml +++ b/api/Vintagestory.API.Datastructures.UniqueQueue-1.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/UniqueQueue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UniqueQueue path: Datastructures/UniqueQueue.cs startLine: 8 @@ -73,8 +73,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/UniqueQueue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/UniqueQueue.cs startLine: 14 @@ -102,8 +102,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/UniqueQueue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Count path: Datastructures/UniqueQueue.cs startLine: 23 @@ -135,8 +135,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/UniqueQueue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clear path: Datastructures/UniqueQueue.cs startLine: 34 @@ -165,8 +165,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/UniqueQueue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Contains path: Datastructures/UniqueQueue.cs startLine: 45 @@ -202,8 +202,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/UniqueQueue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Enqueue path: Datastructures/UniqueQueue.cs startLine: 54 @@ -236,8 +236,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/UniqueQueue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dequeue path: Datastructures/UniqueQueue.cs startLine: 66 @@ -269,8 +269,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/UniqueQueue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Peek path: Datastructures/UniqueQueue.cs startLine: 77 @@ -302,8 +302,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/UniqueQueue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetEnumerator path: Datastructures/UniqueQueue.cs startLine: 83 diff --git a/api/Vintagestory.API.MathTools.AABBIntersectionTest.yml b/api/Vintagestory.API.MathTools.AABBIntersectionTest.yml index b01cb22e..6a90cb12 100644 --- a/api/Vintagestory.API.MathTools.AABBIntersectionTest.yml +++ b/api/Vintagestory.API.MathTools.AABBIntersectionTest.yml @@ -30,8 +30,8 @@ items: source: remote: path: VintagestoryApi/Math/AABBIntersectionTest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AABBIntersectionTest path: Math/AABBIntersectionTest.cs startLine: 22 @@ -65,8 +65,8 @@ items: source: remote: path: VintagestoryApi/Math/AABBIntersectionTest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: blockSelectionTester path: Math/AABBIntersectionTest.cs startLine: 28 @@ -92,8 +92,8 @@ items: source: remote: path: VintagestoryApi/Math/AABBIntersectionTest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: hitPosition path: Math/AABBIntersectionTest.cs startLine: 31 @@ -119,8 +119,8 @@ items: source: remote: path: VintagestoryApi/Math/AABBIntersectionTest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ray path: Math/AABBIntersectionTest.cs startLine: 32 @@ -146,8 +146,8 @@ items: source: remote: path: VintagestoryApi/Math/AABBIntersectionTest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: pos path: Math/AABBIntersectionTest.cs startLine: 33 @@ -173,8 +173,8 @@ items: source: remote: path: VintagestoryApi/Math/AABBIntersectionTest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: hitOnBlockFace path: Math/AABBIntersectionTest.cs startLine: 34 @@ -200,8 +200,8 @@ items: source: remote: path: VintagestoryApi/Math/AABBIntersectionTest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: hitOnSelectionBox path: Math/AABBIntersectionTest.cs startLine: 35 @@ -227,8 +227,8 @@ items: source: remote: path: VintagestoryApi/Math/AABBIntersectionTest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/AABBIntersectionTest.cs startLine: 40 @@ -259,8 +259,8 @@ items: source: remote: path: VintagestoryApi/Math/AABBIntersectionTest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadRayAndPos path: Math/AABBIntersectionTest.cs startLine: 45 @@ -288,8 +288,8 @@ items: source: remote: path: VintagestoryApi/Math/AABBIntersectionTest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadRayAndPos path: Math/AABBIntersectionTest.cs startLine: 55 @@ -317,8 +317,8 @@ items: source: remote: path: VintagestoryApi/Math/AABBIntersectionTest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSelectedBlock path: Math/AABBIntersectionTest.cs startLine: 61 @@ -352,8 +352,8 @@ items: source: remote: path: VintagestoryApi/Math/AABBIntersectionTest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSelectedBlock path: Math/AABBIntersectionTest.cs startLine: 74 @@ -388,8 +388,8 @@ items: source: remote: path: VintagestoryApi/Math/AABBIntersectionTest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RayIntersectsBlockSelectionBox path: Math/AABBIntersectionTest.cs startLine: 113 @@ -421,8 +421,8 @@ items: source: remote: path: VintagestoryApi/Math/AABBIntersectionTest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RayIntersectsWithCuboid path: Math/AABBIntersectionTest.cs startLine: 166 @@ -461,8 +461,8 @@ items: source: remote: path: VintagestoryApi/Math/AABBIntersectionTest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RayIntersectsWithCuboid path: Math/AABBIntersectionTest.cs startLine: 175 @@ -499,8 +499,8 @@ items: source: remote: path: VintagestoryApi/Math/AABBIntersectionTest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RayInteresectWithCuboidSlabMethod path: Math/AABBIntersectionTest.cs startLine: 224 diff --git a/api/Vintagestory.API.MathTools.Ascii85.yml b/api/Vintagestory.API.MathTools.Ascii85.yml index 6ec33bbc..928ea94a 100644 --- a/api/Vintagestory.API.MathTools.Ascii85.yml +++ b/api/Vintagestory.API.MathTools.Ascii85.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Math/Ascii85.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Ascii85 path: Math/Ascii85.cs startLine: 10 @@ -55,8 +55,8 @@ items: source: remote: path: VintagestoryApi/Math/Ascii85.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Encode path: Math/Ascii85.cs startLine: 17 @@ -93,8 +93,8 @@ items: source: remote: path: VintagestoryApi/Math/Ascii85.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Decode path: Math/Ascii85.cs startLine: 58 diff --git a/api/Vintagestory.API.MathTools.BlockFacing.yml b/api/Vintagestory.API.MathTools.BlockFacing.yml index ff1b89ee..317e1dfb 100644 --- a/api/Vintagestory.API.MathTools.BlockFacing.yml +++ b/api/Vintagestory.API.MathTools.BlockFacing.yml @@ -77,8 +77,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockFacing path: Math/BlockFacing.cs startLine: 18 @@ -128,8 +128,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NumberOfFaces path: Math/BlockFacing.cs startLine: 20 @@ -155,8 +155,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: indexNORTH path: Math/BlockFacing.cs startLine: 21 @@ -182,8 +182,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: indexEAST path: Math/BlockFacing.cs startLine: 22 @@ -209,8 +209,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: indexSOUTH path: Math/BlockFacing.cs startLine: 23 @@ -236,8 +236,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: indexWEST path: Math/BlockFacing.cs startLine: 24 @@ -263,8 +263,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: indexUP path: Math/BlockFacing.cs startLine: 25 @@ -290,8 +290,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: indexDOWN path: Math/BlockFacing.cs startLine: 26 @@ -317,8 +317,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HorizontalFlags path: Math/BlockFacing.cs startLine: 31 @@ -346,8 +346,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VerticalFlags path: Math/BlockFacing.cs startLine: 36 @@ -375,8 +375,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NORTH path: Math/BlockFacing.cs startLine: 42 @@ -404,8 +404,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EAST path: Math/BlockFacing.cs startLine: 46 @@ -433,8 +433,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SOUTH path: Math/BlockFacing.cs startLine: 50 @@ -462,8 +462,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WEST path: Math/BlockFacing.cs startLine: 54 @@ -491,8 +491,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UP path: Math/BlockFacing.cs startLine: 59 @@ -520,8 +520,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DOWN path: Math/BlockFacing.cs startLine: 63 @@ -549,8 +549,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ALLFACES path: Math/BlockFacing.cs startLine: 68 @@ -578,8 +578,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ALLNORMALI path: Math/BlockFacing.cs startLine: 73 @@ -607,8 +607,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AllVertexFlagsNormals path: Math/BlockFacing.cs startLine: 78 @@ -636,8 +636,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HORIZONTALS path: Math/BlockFacing.cs startLine: 83 @@ -665,8 +665,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HORIZONTAL_NORMALI path: Math/BlockFacing.cs startLine: 87 @@ -694,8 +694,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VERTICALS path: Math/BlockFacing.cs startLine: 91 @@ -723,8 +723,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HORIZONTALS_ANGLEORDER path: Math/BlockFacing.cs startLine: 96 @@ -752,8 +752,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Flag path: Math/BlockFacing.cs startLine: 117 @@ -783,8 +783,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Index path: Math/BlockFacing.cs startLine: 121 @@ -814,8 +814,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MeshDataIndex path: Math/BlockFacing.cs startLine: 125 @@ -845,8 +845,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HorizontalAngleIndex path: Math/BlockFacing.cs startLine: 130 @@ -876,8 +876,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Normali path: Math/BlockFacing.cs startLine: 134 @@ -907,8 +907,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Normalf path: Math/BlockFacing.cs startLine: 138 @@ -938,8 +938,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Normald path: Math/BlockFacing.cs startLine: 140 @@ -967,8 +967,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Plane path: Math/BlockFacing.cs startLine: 145 @@ -998,8 +998,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NormalByte path: Math/BlockFacing.cs startLine: 156 @@ -1042,8 +1042,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NormalPacked path: Math/BlockFacing.cs startLine: 161 @@ -1073,8 +1073,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NormalPackedFlags path: Math/BlockFacing.cs startLine: 166 @@ -1104,8 +1104,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlaneCenter path: Math/BlockFacing.cs startLine: 171 @@ -1135,8 +1135,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Math/BlockFacing.cs startLine: 175 @@ -1166,8 +1166,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsHorizontal path: Math/BlockFacing.cs startLine: 181 @@ -1197,8 +1197,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsVertical path: Math/BlockFacing.cs startLine: 185 @@ -1228,8 +1228,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsAxisNS path: Math/BlockFacing.cs startLine: 189 @@ -1259,8 +1259,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsAxisWE path: Math/BlockFacing.cs startLine: 193 @@ -1290,8 +1290,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Axis path: Math/BlockFacing.cs startLine: 197 @@ -1321,8 +1321,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Opposite path: Math/BlockFacing.cs startLine: 234 @@ -1353,8 +1353,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetOpposite path: Math/BlockFacing.cs startLine: 236 @@ -1393,8 +1393,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCCW path: Math/BlockFacing.cs startLine: 246 @@ -1424,8 +1424,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCW path: Math/BlockFacing.cs startLine: 255 @@ -1455,8 +1455,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHorizontalRotated path: Math/BlockFacing.cs startLine: 266 @@ -1496,8 +1496,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FaceWhenRotatedBy path: Math/BlockFacing.cs startLine: 281 @@ -1540,8 +1540,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetFaceBrightness path: Math/BlockFacing.cs startLine: 318 @@ -1587,8 +1587,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IterateThruFacingOffsets path: Math/BlockFacing.cs startLine: 350 @@ -1624,8 +1624,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FinishIteratingAllFaces path: Math/BlockFacing.cs startLine: 384 @@ -1659,8 +1659,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetFaceBrightness path: Math/BlockFacing.cs startLine: 396 @@ -1700,8 +1700,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsAdjacent path: Math/BlockFacing.cs startLine: 426 @@ -1731,8 +1731,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Math/BlockFacing.cs startLine: 441 @@ -1763,8 +1763,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromCode path: Math/BlockFacing.cs startLine: 455 @@ -1801,8 +1801,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromFirstLetter path: Math/BlockFacing.cs startLine: 472 @@ -1835,8 +1835,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromFirstLetter path: Math/BlockFacing.cs startLine: 482 @@ -1873,8 +1873,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromNormal path: Math/BlockFacing.cs startLine: 502 @@ -1904,8 +1904,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromNormal path: Math/BlockFacing.cs startLine: 523 @@ -1935,8 +1935,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromVector path: Math/BlockFacing.cs startLine: 535 @@ -1973,8 +1973,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromFlag path: Math/BlockFacing.cs startLine: 560 @@ -2007,8 +2007,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HorizontalFromAngle path: Math/BlockFacing.cs startLine: 582 @@ -2045,8 +2045,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FlagContains path: Math/BlockFacing.cs startLine: 596 @@ -2086,8 +2086,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockFacing.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FlagContainsHorizontals path: Math/BlockFacing.cs startLine: 607 diff --git a/api/Vintagestory.API.MathTools.BlockFilter.yml b/api/Vintagestory.API.MathTools.BlockFilter.yml index 65cee0a6..87ab9ae4 100644 --- a/api/Vintagestory.API.MathTools.BlockFilter.yml +++ b/api/Vintagestory.API.MathTools.BlockFilter.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Math/AABBIntersectionTest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockFilter path: Math/AABBIntersectionTest.cs startLine: 13 diff --git a/api/Vintagestory.API.MathTools.BlockPos.yml b/api/Vintagestory.API.MathTools.BlockPos.yml index 21f034cb..accdc95c 100644 --- a/api/Vintagestory.API.MathTools.BlockPos.yml +++ b/api/Vintagestory.API.MathTools.BlockPos.yml @@ -99,8 +99,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockPos path: Math/BlockPos.cs startLine: 12 @@ -153,8 +153,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X path: Math/BlockPos.cs startLine: 16 @@ -192,8 +192,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InternalY path: Math/BlockPos.cs startLine: 17 @@ -233,8 +233,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Z path: Math/BlockPos.cs startLine: 23 @@ -272,8 +272,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y path: Math/BlockPos.cs startLine: 25 @@ -299,8 +299,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: dimension path: Math/BlockPos.cs startLine: 26 @@ -326,8 +326,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DimensionBoundary path: Math/BlockPos.cs startLine: 28 @@ -353,8 +353,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/BlockPos.cs startLine: 31 @@ -394,8 +394,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/BlockPos.cs startLine: 35 @@ -426,8 +426,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/BlockPos.cs startLine: 41 @@ -474,8 +474,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/BlockPos.cs startLine: 50 @@ -512,8 +512,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/BlockPos.cs startLine: 58 @@ -556,8 +556,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/BlockPos.cs startLine: 66 @@ -590,8 +590,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/BlockPos.cs startLine: 77 @@ -624,8 +624,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Math/BlockPos.cs startLine: 89 @@ -662,8 +662,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Up path: Math/BlockPos.cs startLine: 100 @@ -700,8 +700,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Down path: Math/BlockPos.cs startLine: 111 @@ -738,8 +738,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/BlockPos.cs startLine: 117 @@ -769,8 +769,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/BlockPos.cs startLine: 125 @@ -800,8 +800,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/BlockPos.cs startLine: 133 @@ -831,8 +831,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/BlockPos.cs startLine: 150 @@ -874,8 +874,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/BlockPos.cs startLine: 158 @@ -912,8 +912,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/BlockPos.cs startLine: 166 @@ -943,8 +943,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetDimension path: Math/BlockPos.cs startLine: 174 @@ -977,8 +977,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetAndEquals path: Math/BlockPos.cs startLine: 187 @@ -1021,8 +1021,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Math/BlockPos.cs startLine: 196 @@ -1050,8 +1050,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToLocalPosition path: Math/BlockPos.cs startLine: 209 @@ -1085,8 +1085,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: West path: Math/BlockPos.cs startLine: 214 @@ -1113,8 +1113,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateFromBytes path: Math/BlockPos.cs startLine: 220 @@ -1144,8 +1144,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: North path: Math/BlockPos.cs startLine: 225 @@ -1172,8 +1172,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: East path: Math/BlockPos.cs startLine: 231 @@ -1200,8 +1200,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: South path: Math/BlockPos.cs startLine: 237 @@ -1228,8 +1228,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FacingFrom path: Math/BlockPos.cs startLine: 248 @@ -1263,8 +1263,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WestCopy path: Math/BlockPos.cs startLine: 270 @@ -1301,8 +1301,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SouthCopy path: Math/BlockPos.cs startLine: 282 @@ -1339,8 +1339,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EastCopy path: Math/BlockPos.cs startLine: 293 @@ -1377,8 +1377,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NorthCopy path: Math/BlockPos.cs startLine: 303 @@ -1415,8 +1415,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DownCopy path: Math/BlockPos.cs startLine: 313 @@ -1453,8 +1453,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UpCopy path: Math/BlockPos.cs startLine: 323 @@ -1491,8 +1491,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Copy path: Math/BlockPos.cs startLine: 333 @@ -1522,8 +1522,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Math/BlockPos.cs startLine: 348 @@ -1566,8 +1566,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Math/BlockPos.cs startLine: 364 @@ -1610,8 +1610,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Math/BlockPos.cs startLine: 377 @@ -1645,8 +1645,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Math/BlockPos.cs startLine: 390 @@ -1680,8 +1680,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Math/BlockPos.cs startLine: 404 @@ -1715,8 +1715,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Math/BlockPos.cs startLine: 419 @@ -1756,8 +1756,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Offset path: Math/BlockPos.cs startLine: 432 @@ -1791,8 +1791,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddCopy path: Math/BlockPos.cs startLine: 447 @@ -1835,8 +1835,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddCopy path: Math/BlockPos.cs startLine: 459 @@ -1879,8 +1879,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddCopy path: Math/BlockPos.cs startLine: 469 @@ -1917,8 +1917,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddCopy path: Math/BlockPos.cs startLine: 480 @@ -1952,8 +1952,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddCopy path: Math/BlockPos.cs startLine: 490 @@ -1987,8 +1987,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddCopy path: Math/BlockPos.cs startLine: 501 @@ -2028,8 +2028,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sub path: Math/BlockPos.cs startLine: 511 @@ -2062,8 +2062,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sub path: Math/BlockPos.cs startLine: 526 @@ -2106,8 +2106,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SubCopy path: Math/BlockPos.cs startLine: 539 @@ -2140,8 +2140,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DivCopy path: Math/BlockPos.cs startLine: 550 @@ -2178,8 +2178,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DistanceTo path: Math/BlockPos.cs startLine: 564 @@ -2213,8 +2213,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DistanceTo path: Math/BlockPos.cs startLine: 581 @@ -2257,8 +2257,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DistanceSqTo path: Math/BlockPos.cs startLine: 597 @@ -2301,8 +2301,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DistanceSqToNearerEdge path: Math/BlockPos.cs startLine: 612 @@ -2346,8 +2346,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HorDistanceSqTo path: Math/BlockPos.cs startLine: 630 @@ -2390,8 +2390,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HorizontalManhattenDistance path: Math/BlockPos.cs startLine: 643 @@ -2425,8 +2425,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ManhattenDistance path: Math/BlockPos.cs startLine: 655 @@ -2460,8 +2460,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ManhattenDistance path: Math/BlockPos.cs startLine: 670 @@ -2507,8 +2507,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InRangeHorizontally path: Math/BlockPos.cs startLine: 679 @@ -2550,8 +2550,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToVec3d path: Math/BlockPos.cs startLine: 692 @@ -2584,8 +2584,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToVec3i path: Math/BlockPos.cs startLine: 702 @@ -2618,8 +2618,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToVec3f path: Math/BlockPos.cs startLine: 707 @@ -2646,8 +2646,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Math/BlockPos.cs startLine: 714 @@ -2678,8 +2678,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Math/BlockPos.cs startLine: 719 @@ -2717,8 +2717,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHashCode path: Math/BlockPos.cs startLine: 724 @@ -2749,8 +2749,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Math/BlockPos.cs startLine: 730 @@ -2786,8 +2786,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Math/BlockPos.cs startLine: 735 @@ -2824,8 +2824,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Addition path: Math/BlockPos.cs startLine: 759 @@ -2860,8 +2860,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Subtraction path: Math/BlockPos.cs startLine: 764 @@ -2896,8 +2896,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Addition path: Math/BlockPos.cs startLine: 769 @@ -2932,8 +2932,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Subtraction path: Math/BlockPos.cs startLine: 774 @@ -2968,8 +2968,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Multiply path: Math/BlockPos.cs startLine: 779 @@ -3004,8 +3004,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Multiply path: Math/BlockPos.cs startLine: 784 @@ -3040,8 +3040,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Division path: Math/BlockPos.cs startLine: 789 @@ -3076,8 +3076,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Equality path: Math/BlockPos.cs startLine: 794 @@ -3112,8 +3112,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Inequality path: Math/BlockPos.cs startLine: 804 @@ -3148,8 +3148,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AsVec3i path: Math/BlockPos.cs startLine: 811 @@ -3180,8 +3180,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Walk path: Math/BlockPos.cs startLine: 814 diff --git a/api/Vintagestory.API.MathTools.CachingCollisionTester.yml b/api/Vintagestory.API.MathTools.CachingCollisionTester.yml index 9901e948..17e8351c 100644 --- a/api/Vintagestory.API.MathTools.CachingCollisionTester.yml +++ b/api/Vintagestory.API.MathTools.CachingCollisionTester.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Math/CollisionTester.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CachingCollisionTester path: Math/CollisionTester.cs startLine: 429 @@ -68,8 +68,8 @@ items: source: remote: path: VintagestoryApi/Math/CollisionTester.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NewTick path: Math/CollisionTester.cs startLine: 431 @@ -94,8 +94,8 @@ items: source: remote: path: VintagestoryApi/Math/CollisionTester.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GenerateCollisionBoxList path: Math/CollisionTester.cs startLine: 436 diff --git a/api/Vintagestory.API.MathTools.Cardinal.yml b/api/Vintagestory.API.MathTools.Cardinal.yml index 6169fadf..82c6d904 100644 --- a/api/Vintagestory.API.MathTools.Cardinal.yml +++ b/api/Vintagestory.API.MathTools.Cardinal.yml @@ -36,8 +36,8 @@ items: source: remote: path: VintagestoryApi/Math/Cardinal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Cardinal path: Math/Cardinal.cs startLine: 13 @@ -71,8 +71,8 @@ items: source: remote: path: VintagestoryApi/Math/Cardinal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: North path: Math/Cardinal.cs startLine: 21 @@ -100,8 +100,8 @@ items: source: remote: path: VintagestoryApi/Math/Cardinal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NorthEast path: Math/Cardinal.cs startLine: 25 @@ -129,8 +129,8 @@ items: source: remote: path: VintagestoryApi/Math/Cardinal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: East path: Math/Cardinal.cs startLine: 29 @@ -158,8 +158,8 @@ items: source: remote: path: VintagestoryApi/Math/Cardinal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SouthEast path: Math/Cardinal.cs startLine: 33 @@ -187,8 +187,8 @@ items: source: remote: path: VintagestoryApi/Math/Cardinal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: South path: Math/Cardinal.cs startLine: 37 @@ -216,8 +216,8 @@ items: source: remote: path: VintagestoryApi/Math/Cardinal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SouthWest path: Math/Cardinal.cs startLine: 41 @@ -245,8 +245,8 @@ items: source: remote: path: VintagestoryApi/Math/Cardinal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: West path: Math/Cardinal.cs startLine: 45 @@ -274,8 +274,8 @@ items: source: remote: path: VintagestoryApi/Math/Cardinal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NorthWest path: Math/Cardinal.cs startLine: 49 @@ -303,8 +303,8 @@ items: source: remote: path: VintagestoryApi/Math/Cardinal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ALL path: Math/Cardinal.cs startLine: 51 @@ -330,8 +330,8 @@ items: source: remote: path: VintagestoryApi/Math/Cardinal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Normali path: Math/Cardinal.cs startLine: 53 @@ -359,8 +359,8 @@ items: source: remote: path: VintagestoryApi/Math/Cardinal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Normalf path: Math/Cardinal.cs startLine: 54 @@ -388,8 +388,8 @@ items: source: remote: path: VintagestoryApi/Math/Cardinal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Opposite path: Math/Cardinal.cs startLine: 55 @@ -417,8 +417,8 @@ items: source: remote: path: VintagestoryApi/Math/Cardinal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Index path: Math/Cardinal.cs startLine: 56 @@ -446,8 +446,8 @@ items: source: remote: path: VintagestoryApi/Math/Cardinal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Initial path: Math/Cardinal.cs startLine: 57 @@ -475,8 +475,8 @@ items: source: remote: path: VintagestoryApi/Math/Cardinal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Code path: Math/Cardinal.cs startLine: 58 @@ -504,8 +504,8 @@ items: source: remote: path: VintagestoryApi/Math/Cardinal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsDiagnoal path: Math/Cardinal.cs startLine: 60 @@ -533,8 +533,8 @@ items: source: remote: path: VintagestoryApi/Math/Cardinal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OppositeIndex path: Math/Cardinal.cs startLine: 62 @@ -562,8 +562,8 @@ items: source: remote: path: VintagestoryApi/Math/Cardinal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Cardinal.cs startLine: 64 @@ -604,8 +604,8 @@ items: source: remote: path: VintagestoryApi/Math/Cardinal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromNormali path: Math/Cardinal.cs startLine: 77 @@ -635,8 +635,8 @@ items: source: remote: path: VintagestoryApi/Math/Cardinal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromInitial path: Math/Cardinal.cs startLine: 84 @@ -669,8 +669,8 @@ items: source: remote: path: VintagestoryApi/Math/Cardinal.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromVector path: Math/Cardinal.cs startLine: 92 diff --git a/api/Vintagestory.API.MathTools.ClampedSimplexNoise.yml b/api/Vintagestory.API.MathTools.ClampedSimplexNoise.yml index 8cbeaf3d..5d5606f4 100644 --- a/api/Vintagestory.API.MathTools.ClampedSimplexNoise.yml +++ b/api/Vintagestory.API.MathTools.ClampedSimplexNoise.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/ClampedSimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClampedSimplexNoise path: Math/Noise/ClampedSimplexNoise.cs startLine: 5 @@ -58,8 +58,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/ClampedSimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: octaves path: Math/Noise/ClampedSimplexNoise.cs startLine: 7 @@ -85,8 +85,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/ClampedSimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: amplitudes path: Math/Noise/ClampedSimplexNoise.cs startLine: 9 @@ -112,8 +112,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/ClampedSimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: frequencies path: Math/Noise/ClampedSimplexNoise.cs startLine: 10 @@ -139,8 +139,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/ClampedSimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Noise/ClampedSimplexNoise.cs startLine: 13 @@ -175,8 +175,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/ClampedSimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Noise path: Math/Noise/ClampedSimplexNoise.cs startLine: 29 @@ -213,8 +213,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/ClampedSimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Math/Noise/ClampedSimplexNoise.cs startLine: 42 diff --git a/api/Vintagestory.API.MathTools.CollisionTester.yml b/api/Vintagestory.API.MathTools.CollisionTester.yml index da958f55..c276185f 100644 --- a/api/Vintagestory.API.MathTools.CollisionTester.yml +++ b/api/Vintagestory.API.MathTools.CollisionTester.yml @@ -29,8 +29,8 @@ items: source: remote: path: VintagestoryApi/Math/CollisionTester.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CollisionTester path: Math/CollisionTester.cs startLine: 16 @@ -66,8 +66,8 @@ items: source: remote: path: VintagestoryApi/Math/CollisionTester.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CollisionBoxList path: Math/CollisionTester.cs startLine: 18 @@ -93,8 +93,8 @@ items: source: remote: path: VintagestoryApi/Math/CollisionTester.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: entityBox path: Math/CollisionTester.cs startLine: 20 @@ -120,8 +120,8 @@ items: source: remote: path: VintagestoryApi/Math/CollisionTester.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: tmpPos path: Math/CollisionTester.cs startLine: 23 @@ -147,8 +147,8 @@ items: source: remote: path: VintagestoryApi/Math/CollisionTester.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: tmpPosDelta path: Math/CollisionTester.cs startLine: 24 @@ -174,8 +174,8 @@ items: source: remote: path: VintagestoryApi/Math/CollisionTester.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: minPos path: Math/CollisionTester.cs startLine: 26 @@ -201,8 +201,8 @@ items: source: remote: path: VintagestoryApi/Math/CollisionTester.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: maxPos path: Math/CollisionTester.cs startLine: 27 @@ -228,8 +228,8 @@ items: source: remote: path: VintagestoryApi/Math/CollisionTester.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ApplyTerrainCollision path: Math/CollisionTester.cs startLine: 39 @@ -278,8 +278,8 @@ items: source: remote: path: VintagestoryApi/Math/CollisionTester.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GenerateCollisionBoxList path: Math/CollisionTester.cs startLine: 177 @@ -320,8 +320,8 @@ items: source: remote: path: VintagestoryApi/Math/CollisionTester.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsColliding path: Math/CollisionTester.cs startLine: 215 @@ -367,8 +367,8 @@ items: source: remote: path: VintagestoryApi/Math/CollisionTester.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCollidingBlock path: Math/CollisionTester.cs startLine: 220 @@ -407,8 +407,8 @@ items: source: remote: path: VintagestoryApi/Math/CollisionTester.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCollidingCollisionBox path: Math/CollisionTester.cs startLine: 269 @@ -454,8 +454,8 @@ items: source: remote: path: VintagestoryApi/Math/CollisionTester.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCollidingCollisionBox path: Math/CollisionTester.cs startLine: 324 @@ -504,8 +504,8 @@ items: source: remote: path: VintagestoryApi/Math/CollisionTester.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AabbIntersect path: Math/CollisionTester.cs startLine: 371 @@ -548,8 +548,8 @@ items: source: remote: path: VintagestoryApi/Math/CollisionTester.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AabbIntersect path: Math/CollisionTester.cs startLine: 387 diff --git a/api/Vintagestory.API.MathTools.ColorBlend.ColorBlendDelegate.yml b/api/Vintagestory.API.MathTools.ColorBlend.ColorBlendDelegate.yml index 49499dac..58e1ed6c 100644 --- a/api/Vintagestory.API.MathTools.ColorBlend.ColorBlendDelegate.yml +++ b/api/Vintagestory.API.MathTools.ColorBlend.ColorBlendDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorBlend.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorBlendDelegate path: Math/ColorBlend.cs startLine: 69 diff --git a/api/Vintagestory.API.MathTools.ColorBlend.yml b/api/Vintagestory.API.MathTools.ColorBlend.yml index dab85300..7164661c 100644 --- a/api/Vintagestory.API.MathTools.ColorBlend.yml +++ b/api/Vintagestory.API.MathTools.ColorBlend.yml @@ -24,8 +24,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorBlend.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorBlend path: Math/ColorBlend.cs startLine: 67 @@ -59,8 +59,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorBlend.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Blend path: Math/ColorBlend.cs startLine: 87 @@ -97,8 +97,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorBlend.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Normal path: Math/ColorBlend.cs startLine: 92 @@ -133,8 +133,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorBlend.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Overlay path: Math/ColorBlend.cs startLine: 363 @@ -169,8 +169,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorBlend.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Darken path: Math/ColorBlend.cs startLine: 476 @@ -205,8 +205,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorBlend.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Lighten path: Math/ColorBlend.cs startLine: 542 @@ -241,8 +241,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorBlend.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Multiply path: Math/ColorBlend.cs startLine: 609 @@ -277,8 +277,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorBlend.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Screen path: Math/ColorBlend.cs startLine: 686 @@ -313,8 +313,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorBlend.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorDodge path: Math/ColorBlend.cs startLine: 765 @@ -349,8 +349,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorBlend.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorBurn path: Math/ColorBlend.cs startLine: 874 diff --git a/api/Vintagestory.API.MathTools.ColorUtil.LightUtil.yml b/api/Vintagestory.API.MathTools.ColorUtil.LightUtil.yml index 387c57b4..2110921f 100644 --- a/api/Vintagestory.API.MathTools.ColorUtil.LightUtil.yml +++ b/api/Vintagestory.API.MathTools.ColorUtil.LightUtil.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LightUtil path: Math/ColorUtil.cs startLine: 1000 @@ -54,8 +54,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/ColorUtil.cs startLine: 1010 @@ -92,8 +92,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToRgba path: Math/ColorUtil.cs startLine: 1030 diff --git a/api/Vintagestory.API.MathTools.ColorUtil.yml b/api/Vintagestory.API.MathTools.ColorUtil.yml index b12e7697..5a09d53f 100644 --- a/api/Vintagestory.API.MathTools.ColorUtil.yml +++ b/api/Vintagestory.API.MathTools.ColorUtil.yml @@ -87,8 +87,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorUtil path: Math/ColorUtil.cs startLine: 17 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HueBits path: Math/ColorUtil.cs startLine: 22 @@ -153,8 +153,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SatBits path: Math/ColorUtil.cs startLine: 26 @@ -182,8 +182,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BrightBits path: Math/ColorUtil.cs startLine: 30 @@ -211,8 +211,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HueMul path: Math/ColorUtil.cs startLine: 32 @@ -238,8 +238,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SatMul path: Math/ColorUtil.cs startLine: 33 @@ -265,8 +265,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BrightMul path: Math/ColorUtil.cs startLine: 34 @@ -292,8 +292,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HueQuantities path: Math/ColorUtil.cs startLine: 36 @@ -319,8 +319,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SatQuantities path: Math/ColorUtil.cs startLine: 37 @@ -346,8 +346,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BrightQuantities path: Math/ColorUtil.cs startLine: 38 @@ -373,8 +373,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OpaqueAlpha path: Math/ColorUtil.cs startLine: 43 @@ -402,8 +402,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClearAlpha path: Math/ColorUtil.cs startLine: 47 @@ -431,8 +431,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WhiteRgbVec path: Math/ColorUtil.cs startLine: 52 @@ -460,8 +460,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WhiteArgbVec path: Math/ColorUtil.cs startLine: 56 @@ -489,8 +489,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WhiteArgbFloat path: Math/ColorUtil.cs startLine: 60 @@ -518,8 +518,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WhiteArgbDouble path: Math/ColorUtil.cs startLine: 64 @@ -547,8 +547,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WhiteArgbBytes path: Math/ColorUtil.cs startLine: 68 @@ -576,8 +576,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WhiteAhsvBytes path: Math/ColorUtil.cs startLine: 72 @@ -605,8 +605,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WhiteArgb path: Math/ColorUtil.cs startLine: 77 @@ -634,8 +634,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WhiteAhsl path: Math/ColorUtil.cs startLine: 81 @@ -663,8 +663,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlackArgb path: Math/ColorUtil.cs startLine: 85 @@ -692,8 +692,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlackRgbVec path: Math/ColorUtil.cs startLine: 89 @@ -721,8 +721,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlackArgbVec path: Math/ColorUtil.cs startLine: 93 @@ -750,8 +750,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlackArgbDouble path: Math/ColorUtil.cs startLine: 97 @@ -779,8 +779,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReverseColorBytes path: Math/ColorUtil.cs startLine: 105 @@ -817,8 +817,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReverseColorBytes path: Math/ColorUtil.cs startLine: 121 @@ -855,8 +855,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBGRABytes path: Math/ColorUtil.cs startLine: 136 @@ -893,8 +893,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToRGBABytes path: Math/ColorUtil.cs startLine: 152 @@ -931,8 +931,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToRGBAFloats path: Math/ColorUtil.cs startLine: 168 @@ -969,8 +969,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToRGBVec3f path: Math/ColorUtil.cs startLine: 186 @@ -1010,8 +1010,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToRGBAVec4f path: Math/ColorUtil.cs startLine: 195 @@ -1046,8 +1046,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorFromRgba path: Math/ColorUtil.cs startLine: 206 @@ -1080,8 +1080,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorFromRgba path: Math/ColorUtil.cs startLine: 211 @@ -1111,8 +1111,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorFromRgba path: Math/ColorUtil.cs startLine: 219 @@ -1153,8 +1153,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromRGBADoubles path: Math/ColorUtil.cs startLine: 224 @@ -1187,8 +1187,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToRGBADoubles path: Math/ColorUtil.cs startLine: 235 @@ -1225,8 +1225,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorFromRgba path: Math/ColorUtil.cs startLine: 246 @@ -1259,8 +1259,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorMultiply path: Math/ColorUtil.cs startLine: 258 @@ -1300,8 +1300,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorMultiplyEach path: Math/ColorUtil.cs startLine: 275 @@ -1341,8 +1341,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorMultiply3 path: Math/ColorUtil.cs startLine: 294 @@ -1382,8 +1382,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorMultiply3Clamped path: Math/ColorUtil.cs startLine: 310 @@ -1423,8 +1423,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorMultiply4 path: Math/ColorUtil.cs startLine: 330 @@ -1473,8 +1473,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorMultiply4 path: Math/ColorUtil.cs startLine: 349 @@ -1514,8 +1514,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorAverage path: Math/ColorUtil.cs startLine: 366 @@ -1555,8 +1555,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorOverlay path: Math/ColorUtil.cs startLine: 395 @@ -1604,8 +1604,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorOver path: Math/ColorUtil.cs startLine: 414 @@ -1645,8 +1645,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorCombineHSV path: Math/ColorUtil.cs startLine: 447 @@ -1698,8 +1698,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorSubstractHSV path: Math/ColorUtil.cs startLine: 477 @@ -1751,8 +1751,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToRgba path: Math/ColorUtil.cs startLine: 504 @@ -1798,8 +1798,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorA path: Math/ColorUtil.cs startLine: 515 @@ -1836,8 +1836,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorR path: Math/ColorUtil.cs startLine: 525 @@ -1874,8 +1874,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorG path: Math/ColorUtil.cs startLine: 535 @@ -1912,8 +1912,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorB path: Math/ColorUtil.cs startLine: 545 @@ -1950,8 +1950,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorToString path: Math/ColorUtil.cs startLine: 555 @@ -1988,8 +1988,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Hex2Int path: Math/ColorUtil.cs startLine: 566 @@ -2026,8 +2026,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Int2Hex path: Math/ColorUtil.cs startLine: 576 @@ -2064,8 +2064,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Int2HexBGR path: Math/ColorUtil.cs startLine: 581 @@ -2098,8 +2098,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Int2HexRgba path: Math/ColorUtil.cs startLine: 591 @@ -2136,8 +2136,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Doubles2Hex path: Math/ColorUtil.cs startLine: 596 @@ -2170,8 +2170,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Hex2Doubles path: Math/ColorUtil.cs startLine: 606 @@ -2208,8 +2208,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Hex2Doubles path: Math/ColorUtil.cs startLine: 616 @@ -2244,8 +2244,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rgb2Hsv path: Math/ColorUtil.cs startLine: 634 @@ -2291,8 +2291,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rgb2HSv path: Math/ColorUtil.cs startLine: 666 @@ -2334,8 +2334,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RgbToHsvInts path: Math/ColorUtil.cs startLine: 702 @@ -2378,8 +2378,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Hsv2Rgb path: Math/ColorUtil.cs startLine: 733 @@ -2419,8 +2419,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HsvToRgb path: Math/ColorUtil.cs startLine: 780 @@ -2466,8 +2466,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GrayscaleColor path: Math/ColorUtil.cs startLine: 820 @@ -2504,8 +2504,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HsvToRgba path: Math/ColorUtil.cs startLine: 833 @@ -2551,8 +2551,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HsvToRgba path: Math/ColorUtil.cs startLine: 847 @@ -2601,8 +2601,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Hsv2RgbInts path: Math/ColorUtil.cs startLine: 890 @@ -2648,8 +2648,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HSVa2RGBaBytes path: Math/ColorUtil.cs startLine: 930 @@ -2689,8 +2689,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: getIncandescenceColor path: Math/ColorUtil.cs startLine: 973 @@ -2723,8 +2723,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetIncandescenceColorAsColor4f path: Math/ColorUtil.cs startLine: 985 diff --git a/api/Vintagestory.API.MathTools.Crc32Algorithm.yml b/api/Vintagestory.API.MathTools.Crc32Algorithm.yml index 87ca08dc..398bccfc 100644 --- a/api/Vintagestory.API.MathTools.Crc32Algorithm.yml +++ b/api/Vintagestory.API.MathTools.Crc32Algorithm.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Math/Crc32Algorithm.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Crc32Algorithm path: Math/Crc32Algorithm.cs startLine: 10 @@ -92,8 +92,8 @@ items: source: remote: path: VintagestoryApi/Math/Crc32Algorithm.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Crc32Algorithm.cs startLine: 17 @@ -123,8 +123,8 @@ items: source: remote: path: VintagestoryApi/Math/Crc32Algorithm.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Append path: Math/Crc32Algorithm.cs startLine: 36 @@ -176,8 +176,8 @@ items: source: remote: path: VintagestoryApi/Math/Crc32Algorithm.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Append path: Math/Crc32Algorithm.cs startLine: 55 @@ -223,8 +223,8 @@ items: source: remote: path: VintagestoryApi/Math/Crc32Algorithm.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Compute path: Math/Crc32Algorithm.cs startLine: 69 @@ -267,8 +267,8 @@ items: source: remote: path: VintagestoryApi/Math/Crc32Algorithm.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Compute path: Math/Crc32Algorithm.cs startLine: 79 @@ -305,8 +305,8 @@ items: source: remote: path: VintagestoryApi/Math/Crc32Algorithm.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Initialize path: Math/Crc32Algorithm.cs startLine: 87 @@ -334,8 +334,8 @@ items: source: remote: path: VintagestoryApi/Math/Crc32Algorithm.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HashCore path: Math/Crc32Algorithm.cs startLine: 95 @@ -373,8 +373,8 @@ items: source: remote: path: VintagestoryApi/Math/Crc32Algorithm.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HashFinal path: Math/Crc32Algorithm.cs startLine: 103 diff --git a/api/Vintagestory.API.MathTools.Cuboidd.yml b/api/Vintagestory.API.MathTools.Cuboidd.yml index 6ae9341e..0cfaade2 100644 --- a/api/Vintagestory.API.MathTools.Cuboidd.yml +++ b/api/Vintagestory.API.MathTools.Cuboidd.yml @@ -76,8 +76,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Cuboidd path: Math/Cuboid/Cuboidd.cs startLine: 8 @@ -115,8 +115,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X1 path: Math/Cuboid/Cuboidd.cs startLine: 12 @@ -142,8 +142,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y1 path: Math/Cuboid/Cuboidd.cs startLine: 13 @@ -169,8 +169,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Z1 path: Math/Cuboid/Cuboidd.cs startLine: 14 @@ -196,8 +196,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X2 path: Math/Cuboid/Cuboidd.cs startLine: 16 @@ -223,8 +223,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y2 path: Math/Cuboid/Cuboidd.cs startLine: 17 @@ -250,8 +250,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Z2 path: Math/Cuboid/Cuboidd.cs startLine: 18 @@ -277,8 +277,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Width path: Math/Cuboid/Cuboidd.cs startLine: 23 @@ -308,8 +308,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Height path: Math/Cuboid/Cuboidd.cs startLine: 27 @@ -339,8 +339,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Length path: Math/Cuboid/Cuboidd.cs startLine: 31 @@ -370,8 +370,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinX path: Math/Cuboid/Cuboidd.cs startLine: 33 @@ -399,8 +399,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinY path: Math/Cuboid/Cuboidd.cs startLine: 34 @@ -428,8 +428,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinZ path: Math/Cuboid/Cuboidd.cs startLine: 35 @@ -457,8 +457,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxX path: Math/Cuboid/Cuboidd.cs startLine: 36 @@ -486,8 +486,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxY path: Math/Cuboid/Cuboidd.cs startLine: 37 @@ -515,8 +515,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxZ path: Math/Cuboid/Cuboidd.cs startLine: 38 @@ -544,8 +544,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Start path: Math/Cuboid/Cuboidd.cs startLine: 41 @@ -573,8 +573,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: End path: Math/Cuboid/Cuboidd.cs startLine: 46 @@ -602,8 +602,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Cuboid/Cuboidd.cs startLine: 51 @@ -631,8 +631,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Cuboid/Cuboidd.cs startLine: 56 @@ -673,8 +673,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Cuboid/Cuboidd.cs startLine: 64 @@ -719,8 +719,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Cuboid/Cuboidd.cs startLine: 78 @@ -754,8 +754,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Cuboid/Cuboidd.cs startLine: 87 @@ -787,8 +787,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Cuboid/Cuboidd.cs startLine: 99 @@ -816,8 +816,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetAndTranslate path: Math/Cuboid/Cuboidd.cs startLine: 112 @@ -851,8 +851,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetAndTranslate path: Math/Cuboid/Cuboidd.cs startLine: 126 @@ -893,8 +893,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveRoundingErrors path: Math/Cuboid/Cuboidd.cs startLine: 137 @@ -919,8 +919,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Translate path: Math/Cuboid/Cuboidd.cs startLine: 153 @@ -952,8 +952,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Translate path: Math/Cuboid/Cuboidd.cs startLine: 162 @@ -992,8 +992,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GrowBy path: Math/Cuboid/Cuboidd.cs startLine: 173 @@ -1030,8 +1030,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ContainsOrTouches path: Math/Cuboid/Cuboidd.cs startLine: 187 @@ -1070,8 +1070,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Contains path: Math/Cuboid/Cuboidd.cs startLine: 195 @@ -1110,8 +1110,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ContainsOrTouches path: Math/Cuboid/Cuboidd.cs startLine: 203 @@ -1143,8 +1143,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GrowToInclude path: Math/Cuboid/Cuboidd.cs startLine: 211 @@ -1183,8 +1183,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GrowToInclude path: Math/Cuboid/Cuboidd.cs startLine: 226 @@ -1216,8 +1216,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShortestDistanceFrom path: Math/Cuboid/Cuboidd.cs startLine: 235 @@ -1256,8 +1256,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToCuboidi path: Math/Cuboid/Cuboidd.cs startLine: 245 @@ -1284,8 +1284,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShortestVerticalDistanceFrom path: Math/Cuboid/Cuboidd.cs startLine: 254 @@ -1320,8 +1320,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShortestVerticalDistanceFrom path: Math/Cuboid/Cuboidd.cs startLine: 265 @@ -1353,8 +1353,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShortestVerticalDistanceFrom path: Math/Cuboid/Cuboidd.cs startLine: 278 @@ -1388,8 +1388,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShortestDistanceFrom path: Math/Cuboid/Cuboidd.cs startLine: 299 @@ -1421,8 +1421,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShortestDistanceFrom path: Math/Cuboid/Cuboidd.cs startLine: 318 @@ -1456,8 +1456,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShortestHorizontalDistanceFrom path: Math/Cuboid/Cuboidd.cs startLine: 351 @@ -1491,8 +1491,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShortestHorizontalDistanceFrom path: Math/Cuboid/Cuboidd.cs startLine: 370 @@ -1532,8 +1532,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShortestDistanceFrom path: Math/Cuboid/Cuboidd.cs startLine: 385 @@ -1565,8 +1565,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: pushOutX path: Math/Cuboid/Cuboidd.cs startLine: 393 @@ -1605,8 +1605,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: pushOutY path: Math/Cuboid/Cuboidd.cs startLine: 416 @@ -1645,8 +1645,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: pushOutZ path: Math/Cuboid/Cuboidd.cs startLine: 439 @@ -1685,8 +1685,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotatedCopy path: Math/Cuboid/Cuboidd.cs startLine: 462 @@ -1727,8 +1727,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotatedCopy path: Math/Cuboid/Cuboidd.cs startLine: 509 @@ -1762,8 +1762,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OffsetCopy path: Math/Cuboid/Cuboidd.cs startLine: 517 @@ -1802,8 +1802,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OffsetCopy path: Math/Cuboid/Cuboidd.cs startLine: 525 @@ -1835,8 +1835,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Intersects path: Math/Cuboid/Cuboidd.cs startLine: 534 @@ -1868,8 +1868,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Intersects path: Math/Cuboid/Cuboidd.cs startLine: 551 @@ -1901,8 +1901,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Intersects path: Math/Cuboid/Cuboidd.cs startLine: 568 @@ -1936,8 +1936,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Intersects path: Math/Cuboid/Cuboidd.cs startLine: 583 @@ -1976,8 +1976,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IntersectsOrTouches path: Math/Cuboid/Cuboidd.cs startLine: 602 @@ -2009,8 +2009,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IntersectsOrTouches path: Math/Cuboid/Cuboidd.cs startLine: 621 @@ -2044,8 +2044,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IntersectsOrTouches path: Math/Cuboid/Cuboidd.cs startLine: 639 @@ -2086,8 +2086,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToFloat path: Math/Cuboid/Cuboidd.cs startLine: 654 @@ -2114,8 +2114,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Math/Cuboid/Cuboidd.cs startLine: 662 @@ -2144,8 +2144,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidd.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Math/Cuboid/Cuboidd.cs startLine: 668 diff --git a/api/Vintagestory.API.MathTools.Cuboidf.yml b/api/Vintagestory.API.MathTools.Cuboidf.yml index 7419023a..da4594c1 100644 --- a/api/Vintagestory.API.MathTools.Cuboidf.yml +++ b/api/Vintagestory.API.MathTools.Cuboidf.yml @@ -81,8 +81,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Cuboidf path: Math/Cuboid/Cuboidf.cs startLine: 7 @@ -121,8 +121,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X1 path: Math/Cuboid/Cuboidf.cs startLine: 9 @@ -148,8 +148,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y1 path: Math/Cuboid/Cuboidf.cs startLine: 10 @@ -175,8 +175,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Z1 path: Math/Cuboid/Cuboidf.cs startLine: 11 @@ -202,8 +202,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X2 path: Math/Cuboid/Cuboidf.cs startLine: 13 @@ -229,8 +229,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y2 path: Math/Cuboid/Cuboidf.cs startLine: 14 @@ -256,8 +256,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Z2 path: Math/Cuboid/Cuboidf.cs startLine: 15 @@ -283,8 +283,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XSize path: Math/Cuboid/Cuboidf.cs startLine: 20 @@ -314,8 +314,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: YSize path: Math/Cuboid/Cuboidf.cs startLine: 24 @@ -345,8 +345,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ZSize path: Math/Cuboid/Cuboidf.cs startLine: 28 @@ -376,8 +376,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Width path: Math/Cuboid/Cuboidf.cs startLine: 30 @@ -405,8 +405,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Height path: Math/Cuboid/Cuboidf.cs startLine: 31 @@ -434,8 +434,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Length path: Math/Cuboid/Cuboidf.cs startLine: 32 @@ -463,8 +463,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinX path: Math/Cuboid/Cuboidf.cs startLine: 34 @@ -492,8 +492,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinY path: Math/Cuboid/Cuboidf.cs startLine: 35 @@ -521,8 +521,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinZ path: Math/Cuboid/Cuboidf.cs startLine: 36 @@ -550,8 +550,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxX path: Math/Cuboid/Cuboidf.cs startLine: 37 @@ -579,8 +579,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxY path: Math/Cuboid/Cuboidf.cs startLine: 38 @@ -608,8 +608,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxZ path: Math/Cuboid/Cuboidf.cs startLine: 39 @@ -637,8 +637,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MidX path: Math/Cuboid/Cuboidf.cs startLine: 41 @@ -666,8 +666,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MidY path: Math/Cuboid/Cuboidf.cs startLine: 42 @@ -695,8 +695,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MidZ path: Math/Cuboid/Cuboidf.cs startLine: 43 @@ -724,8 +724,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Math/Cuboid/Cuboidf.cs startLine: 46 @@ -758,8 +758,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Empty path: Math/Cuboid/Cuboidf.cs startLine: 81 @@ -789,8 +789,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Start path: Math/Cuboid/Cuboidf.cs startLine: 86 @@ -818,8 +818,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: End path: Math/Cuboid/Cuboidf.cs startLine: 91 @@ -847,8 +847,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Startd path: Math/Cuboid/Cuboidf.cs startLine: 96 @@ -876,8 +876,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Endd path: Math/Cuboid/Cuboidf.cs startLine: 101 @@ -905,8 +905,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Cuboid/Cuboidf.cs startLine: 106 @@ -934,8 +934,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Cuboid/Cuboidf.cs startLine: 111 @@ -976,8 +976,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Cuboid/Cuboidf.cs startLine: 121 @@ -1010,8 +1010,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Cuboid/Cuboidf.cs startLine: 132 @@ -1052,8 +1052,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Cuboid/Cuboidf.cs startLine: 140 @@ -1098,8 +1098,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Cuboid/Cuboidf.cs startLine: 155 @@ -1133,8 +1133,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Cuboid/Cuboidf.cs startLine: 161 @@ -1162,8 +1162,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Translate path: Math/Cuboid/Cuboidf.cs startLine: 175 @@ -1202,8 +1202,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Translate path: Math/Cuboid/Cuboidf.cs startLine: 189 @@ -1235,8 +1235,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sub path: Math/Cuboid/Cuboidf.cs startLine: 198 @@ -1275,8 +1275,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sub path: Math/Cuboid/Cuboidf.cs startLine: 212 @@ -1308,8 +1308,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Contains path: Math/Cuboid/Cuboidf.cs startLine: 221 @@ -1348,8 +1348,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ContainsOrTouches path: Math/Cuboid/Cuboidf.cs startLine: 229 @@ -1388,8 +1388,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ContainsOrTouches path: Math/Cuboid/Cuboidf.cs startLine: 237 @@ -1421,8 +1421,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OmniNotDownGrowBy path: Math/Cuboid/Cuboidf.cs startLine: 242 @@ -1455,8 +1455,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OmniGrowBy path: Math/Cuboid/Cuboidf.cs startLine: 252 @@ -1489,8 +1489,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShrinkBy path: Math/Cuboid/Cuboidf.cs startLine: 263 @@ -1523,8 +1523,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GrowToInclude path: Math/Cuboid/Cuboidf.cs startLine: 278 @@ -1563,8 +1563,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClampTo path: Math/Cuboid/Cuboidf.cs startLine: 289 @@ -1596,8 +1596,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GrowToInclude path: Math/Cuboid/Cuboidf.cs startLine: 305 @@ -1629,8 +1629,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShortestDistanceFrom path: Math/Cuboid/Cuboidf.cs startLine: 314 @@ -1669,8 +1669,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShortestDistanceFrom path: Math/Cuboid/Cuboidf.cs startLine: 326 @@ -1702,8 +1702,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: pushOutX path: Math/Cuboid/Cuboidf.cs startLine: 334 @@ -1742,8 +1742,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: pushOutY path: Math/Cuboid/Cuboidf.cs startLine: 357 @@ -1782,8 +1782,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: pushOutZ path: Math/Cuboid/Cuboidf.cs startLine: 380 @@ -1822,8 +1822,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotatedCopy path: Math/Cuboid/Cuboidf.cs startLine: 403 @@ -1864,8 +1864,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotatedCopy path: Math/Cuboid/Cuboidf.cs startLine: 442 @@ -1899,8 +1899,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OffsetCopy path: Math/Cuboid/Cuboidf.cs startLine: 450 @@ -1939,8 +1939,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OffsetCopy path: Math/Cuboid/Cuboidf.cs startLine: 458 @@ -1972,8 +1972,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OffsetCopyDouble path: Math/Cuboid/Cuboidf.cs startLine: 466 @@ -2012,8 +2012,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OffsetCopyDouble path: Math/Cuboid/Cuboidf.cs startLine: 474 @@ -2045,8 +2045,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Expand path: Math/Cuboid/Cuboidf.cs startLine: 482 @@ -2081,8 +2081,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Math/Cuboid/Cuboidf.cs startLine: 499 @@ -2111,8 +2111,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToDouble path: Math/Cuboid/Cuboidf.cs startLine: 505 @@ -2139,8 +2139,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Default path: Math/Cuboid/Cuboidf.cs startLine: 514 @@ -2170,8 +2170,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RoundToFracsOfOne10thousand path: Math/Cuboid/Cuboidf.cs startLine: 523 @@ -2198,8 +2198,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Math/Cuboid/Cuboidf.cs startLine: 538 @@ -2235,8 +2235,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ConvertToCuboidi path: Math/Cuboid/Cuboidf.cs startLine: 543 @@ -2263,8 +2263,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Math/Cuboid/Cuboidf.cs startLine: 550 diff --git a/api/Vintagestory.API.MathTools.Cuboidi.yml b/api/Vintagestory.API.MathTools.Cuboidi.yml index 479e9590..05b4956a 100644 --- a/api/Vintagestory.API.MathTools.Cuboidi.yml +++ b/api/Vintagestory.API.MathTools.Cuboidi.yml @@ -84,8 +84,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Cuboidi path: Math/Cuboid/Cuboidi.cs startLine: 5 @@ -128,8 +128,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X1 path: Math/Cuboid/Cuboidi.cs startLine: 9 @@ -167,8 +167,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y1 path: Math/Cuboid/Cuboidi.cs startLine: 12 @@ -206,8 +206,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Z1 path: Math/Cuboid/Cuboidi.cs startLine: 15 @@ -245,8 +245,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X2 path: Math/Cuboid/Cuboidi.cs startLine: 18 @@ -284,8 +284,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y2 path: Math/Cuboid/Cuboidi.cs startLine: 21 @@ -323,8 +323,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Z2 path: Math/Cuboid/Cuboidi.cs startLine: 24 @@ -362,8 +362,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Coordinates path: Math/Cuboid/Cuboidi.cs startLine: 26 @@ -391,8 +391,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinX path: Math/Cuboid/Cuboidi.cs startLine: 28 @@ -420,8 +420,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinY path: Math/Cuboid/Cuboidi.cs startLine: 29 @@ -449,8 +449,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinZ path: Math/Cuboid/Cuboidi.cs startLine: 30 @@ -478,8 +478,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxX path: Math/Cuboid/Cuboidi.cs startLine: 33 @@ -507,8 +507,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxY path: Math/Cuboid/Cuboidi.cs startLine: 34 @@ -536,8 +536,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxZ path: Math/Cuboid/Cuboidi.cs startLine: 35 @@ -565,8 +565,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SizeX path: Math/Cuboid/Cuboidi.cs startLine: 37 @@ -594,8 +594,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SizeY path: Math/Cuboid/Cuboidi.cs startLine: 38 @@ -623,8 +623,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SizeZ path: Math/Cuboid/Cuboidi.cs startLine: 40 @@ -652,8 +652,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SizeXYZ path: Math/Cuboid/Cuboidi.cs startLine: 42 @@ -681,8 +681,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SizeXZ path: Math/Cuboid/Cuboidi.cs startLine: 43 @@ -710,8 +710,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Start path: Math/Cuboid/Cuboidi.cs startLine: 45 @@ -739,8 +739,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: End path: Math/Cuboid/Cuboidi.cs startLine: 46 @@ -768,8 +768,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Center path: Math/Cuboid/Cuboidi.cs startLine: 47 @@ -797,8 +797,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CenterX path: Math/Cuboid/Cuboidi.cs startLine: 49 @@ -826,8 +826,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CenterY path: Math/Cuboid/Cuboidi.cs startLine: 50 @@ -855,8 +855,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CenterZ path: Math/Cuboid/Cuboidi.cs startLine: 51 @@ -884,8 +884,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Volume path: Math/Cuboid/Cuboidi.cs startLine: 52 @@ -913,8 +913,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Cuboid/Cuboidi.cs startLine: 55 @@ -942,8 +942,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Cuboid/Cuboidi.cs startLine: 57 @@ -974,8 +974,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Cuboid/Cuboidi.cs startLine: 62 @@ -1016,8 +1016,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Cuboid/Cuboidi.cs startLine: 67 @@ -1050,8 +1050,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Cuboid/Cuboidi.cs startLine: 72 @@ -1084,8 +1084,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Cuboid/Cuboidi.cs startLine: 77 @@ -1118,8 +1118,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Cuboid/Cuboidi.cs startLine: 85 @@ -1164,8 +1164,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Cuboid/Cuboidi.cs startLine: 99 @@ -1199,8 +1199,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Translate path: Math/Cuboid/Cuboidi.cs startLine: 108 @@ -1239,8 +1239,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Translate path: Math/Cuboid/Cuboidi.cs startLine: 122 @@ -1272,8 +1272,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sub path: Math/Cuboid/Cuboidi.cs startLine: 131 @@ -1312,8 +1312,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Div path: Math/Cuboid/Cuboidi.cs startLine: 145 @@ -1348,8 +1348,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sub path: Math/Cuboid/Cuboidi.cs startLine: 159 @@ -1381,8 +1381,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Contains path: Math/Cuboid/Cuboidi.cs startLine: 165 @@ -1412,8 +1412,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Contains path: Math/Cuboid/Cuboidi.cs startLine: 170 @@ -1443,8 +1443,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Contains path: Math/Cuboid/Cuboidi.cs startLine: 178 @@ -1483,8 +1483,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Contains path: Math/Cuboid/Cuboidi.cs startLine: 186 @@ -1521,8 +1521,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Contains path: Math/Cuboid/Cuboidi.cs startLine: 194 @@ -1554,8 +1554,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ContainsOrTouches path: Math/Cuboid/Cuboidi.cs startLine: 202 @@ -1594,8 +1594,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ContainsOrTouches path: Math/Cuboid/Cuboidi.cs startLine: 207 @@ -1625,8 +1625,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ContainsOrTouches path: Math/Cuboid/Cuboidi.cs startLine: 216 @@ -1658,8 +1658,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ContainsOrTouches path: Math/Cuboid/Cuboidi.cs startLine: 224 @@ -1691,8 +1691,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ContainsOrTouches path: Math/Cuboid/Cuboidi.cs startLine: 232 @@ -1724,8 +1724,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GrowToInclude path: Math/Cuboid/Cuboidi.cs startLine: 240 @@ -1764,8 +1764,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GrowToInclude path: Math/Cuboid/Cuboidi.cs startLine: 254 @@ -1797,8 +1797,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GrowBy path: Math/Cuboid/Cuboidi.cs startLine: 260 @@ -1835,8 +1835,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShortestDistanceFrom path: Math/Cuboid/Cuboidi.cs startLine: 274 @@ -1875,8 +1875,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShortestDistanceFrom path: Math/Cuboid/Cuboidi.cs startLine: 286 @@ -1908,8 +1908,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShortestDistanceFrom path: Math/Cuboid/Cuboidi.cs startLine: 295 @@ -1941,8 +1941,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: pushOutX path: Math/Cuboid/Cuboidi.cs startLine: 315 @@ -1981,8 +1981,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: pushOutY path: Math/Cuboid/Cuboidi.cs startLine: 338 @@ -2021,8 +2021,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: pushOutZ path: Math/Cuboid/Cuboidi.cs startLine: 361 @@ -2061,8 +2061,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotatedCopy path: Math/Cuboid/Cuboidi.cs startLine: 384 @@ -2103,8 +2103,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotatedCopy path: Math/Cuboid/Cuboidi.cs startLine: 434 @@ -2138,8 +2138,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OffsetCopy path: Math/Cuboid/Cuboidi.cs startLine: 442 @@ -2178,8 +2178,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OffsetCopy path: Math/Cuboid/Cuboidi.cs startLine: 450 @@ -2211,8 +2211,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Intersects path: Math/Cuboid/Cuboidi.cs startLine: 458 @@ -2244,8 +2244,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Intersects path: Math/Cuboid/Cuboidi.cs startLine: 468 @@ -2279,8 +2279,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IntersectsOrTouches path: Math/Cuboid/Cuboidi.cs startLine: 477 @@ -2312,8 +2312,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Math/Cuboid/Cuboidi.cs startLine: 486 @@ -2342,8 +2342,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Math/Cuboid/Cuboidi.cs startLine: 492 @@ -2379,8 +2379,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Math/Cuboid/Cuboidi.cs startLine: 497 @@ -2418,8 +2418,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Math/Cuboid/Cuboidi.cs startLine: 515 @@ -2450,8 +2450,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/Cuboidi.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHashCode path: Math/Cuboid/Cuboidi.cs startLine: 520 diff --git a/api/Vintagestory.API.MathTools.Easings.yml b/api/Vintagestory.API.MathTools.Easings.yml index 97aef53e..ad9ef5f5 100644 --- a/api/Vintagestory.API.MathTools.Easings.yml +++ b/api/Vintagestory.API.MathTools.Easings.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Easings path: Math/GameMath.cs startLine: 10 @@ -51,8 +51,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EaseOutBack path: Math/GameMath.cs startLine: 12 diff --git a/api/Vintagestory.API.MathTools.EntityFilter.yml b/api/Vintagestory.API.MathTools.EntityFilter.yml index 8da839d0..79f5f62d 100644 --- a/api/Vintagestory.API.MathTools.EntityFilter.yml +++ b/api/Vintagestory.API.MathTools.EntityFilter.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Math/AABBIntersectionTest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityFilter path: Math/AABBIntersectionTest.cs startLine: 14 diff --git a/api/Vintagestory.API.MathTools.EnumAxis.yml b/api/Vintagestory.API.MathTools.EnumAxis.yml index c0f73268..9852ddb6 100644 --- a/api/Vintagestory.API.MathTools.EnumAxis.yml +++ b/api/Vintagestory.API.MathTools.EnumAxis.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Math/EnumAxis.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumAxis path: Math/EnumAxis.cs startLine: 5 @@ -45,8 +45,8 @@ items: source: remote: path: VintagestoryApi/Math/EnumAxis.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X path: Math/EnumAxis.cs startLine: 10 @@ -73,8 +73,8 @@ items: source: remote: path: VintagestoryApi/Math/EnumAxis.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y path: Math/EnumAxis.cs startLine: 14 @@ -101,8 +101,8 @@ items: source: remote: path: VintagestoryApi/Math/EnumAxis.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Z path: Math/EnumAxis.cs startLine: 18 diff --git a/api/Vintagestory.API.MathTools.EnumColorBlendMode.yml b/api/Vintagestory.API.MathTools.EnumColorBlendMode.yml index 86abc1ea..dbdcaae8 100644 --- a/api/Vintagestory.API.MathTools.EnumColorBlendMode.yml +++ b/api/Vintagestory.API.MathTools.EnumColorBlendMode.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorBlend.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumColorBlendMode path: Math/ColorBlend.cs startLine: 54 @@ -48,8 +48,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorBlend.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Normal path: Math/ColorBlend.cs startLine: 56 @@ -74,8 +74,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorBlend.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Darken path: Math/ColorBlend.cs startLine: 57 @@ -100,8 +100,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorBlend.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Lighten path: Math/ColorBlend.cs startLine: 58 @@ -126,8 +126,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorBlend.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Multiply path: Math/ColorBlend.cs startLine: 59 @@ -152,8 +152,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorBlend.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Screen path: Math/ColorBlend.cs startLine: 60 @@ -178,8 +178,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorBlend.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorDodge path: Math/ColorBlend.cs startLine: 61 @@ -204,8 +204,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorBlend.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColorBurn path: Math/ColorBlend.cs startLine: 62 @@ -230,8 +230,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorBlend.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Overlay path: Math/ColorBlend.cs startLine: 63 diff --git a/api/Vintagestory.API.MathTools.EnumCombination.yml b/api/Vintagestory.API.MathTools.EnumCombination.yml index 1d37f203..832ea1c3 100644 --- a/api/Vintagestory.API.MathTools.EnumCombination.yml +++ b/api/Vintagestory.API.MathTools.EnumCombination.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Math/EnumCombination.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumCombination path: Math/EnumCombination.cs startLine: 2 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Math/EnumCombination.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Math/EnumCombination.cs startLine: 4 @@ -69,8 +69,8 @@ items: source: remote: path: VintagestoryApi/Math/EnumCombination.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Multiply path: Math/EnumCombination.cs startLine: 5 @@ -95,8 +95,8 @@ items: source: remote: path: VintagestoryApi/Math/EnumCombination.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SelectiveMultiply path: Math/EnumCombination.cs startLine: 6 diff --git a/api/Vintagestory.API.MathTools.EnumDistribution.yml b/api/Vintagestory.API.MathTools.EnumDistribution.yml index 59552628..8b532d54 100644 --- a/api/Vintagestory.API.MathTools.EnumDistribution.yml +++ b/api/Vintagestory.API.MathTools.EnumDistribution.yml @@ -26,8 +26,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumDistribution path: Math/NatFloat.cs startLine: 8 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UNIFORM path: Math/NatFloat.cs startLine: 13 @@ -81,8 +81,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TRIANGLE path: Math/NatFloat.cs startLine: 17 @@ -109,8 +109,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GAUSSIAN path: Math/NatFloat.cs startLine: 21 @@ -137,8 +137,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NARROWGAUSSIAN path: Math/NatFloat.cs startLine: 25 @@ -165,8 +165,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VERYNARROWGAUSSIAN path: Math/NatFloat.cs startLine: 29 @@ -193,8 +193,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: INVERSEGAUSSIAN path: Math/NatFloat.cs startLine: 33 @@ -221,8 +221,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NARROWINVERSEGAUSSIAN path: Math/NatFloat.cs startLine: 37 @@ -249,8 +249,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: INVEXP path: Math/NatFloat.cs startLine: 41 @@ -277,8 +277,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: STRONGINVEXP path: Math/NatFloat.cs startLine: 45 @@ -305,8 +305,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: STRONGERINVEXP path: Math/NatFloat.cs startLine: 49 @@ -333,8 +333,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DIRAC path: Math/NatFloat.cs startLine: 53 diff --git a/api/Vintagestory.API.MathTools.EnumIntersect.yml b/api/Vintagestory.API.MathTools.EnumIntersect.yml index e51e4873..cd31e4c8 100644 --- a/api/Vintagestory.API.MathTools.EnumIntersect.yml +++ b/api/Vintagestory.API.MathTools.EnumIntersect.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Math/CollisionTester.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumIntersect path: Math/CollisionTester.cs startLine: 7 @@ -45,8 +45,8 @@ items: source: remote: path: VintagestoryApi/Math/CollisionTester.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NoIntersect path: Math/CollisionTester.cs startLine: 9 @@ -71,8 +71,8 @@ items: source: remote: path: VintagestoryApi/Math/CollisionTester.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IntersectX path: Math/CollisionTester.cs startLine: 10 @@ -97,8 +97,8 @@ items: source: remote: path: VintagestoryApi/Math/CollisionTester.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IntersectY path: Math/CollisionTester.cs startLine: 11 @@ -123,8 +123,8 @@ items: source: remote: path: VintagestoryApi/Math/CollisionTester.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IntersectZ path: Math/CollisionTester.cs startLine: 12 @@ -149,8 +149,8 @@ items: source: remote: path: VintagestoryApi/Math/CollisionTester.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Stuck path: Math/CollisionTester.cs startLine: 13 diff --git a/api/Vintagestory.API.MathTools.EnumPushDirection.yml b/api/Vintagestory.API.MathTools.EnumPushDirection.yml index 28ce148e..fa06605e 100644 --- a/api/Vintagestory.API.MathTools.EnumPushDirection.yml +++ b/api/Vintagestory.API.MathTools.EnumPushDirection.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/ICuboid.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumPushDirection path: Math/Cuboid/ICuboid.cs startLine: 4 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/ICuboid.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: None path: Math/Cuboid/ICuboid.cs startLine: 6 @@ -69,8 +69,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/ICuboid.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Positive path: Math/Cuboid/ICuboid.cs startLine: 7 @@ -95,8 +95,8 @@ items: source: remote: path: VintagestoryApi/Math/Cuboid/ICuboid.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Negative path: Math/Cuboid/ICuboid.cs startLine: 8 diff --git a/api/Vintagestory.API.MathTools.EnumTransformFunction.yml b/api/Vintagestory.API.MathTools.EnumTransformFunction.yml index 0e39942c..e42bef6b 100644 --- a/api/Vintagestory.API.MathTools.EnumTransformFunction.yml +++ b/api/Vintagestory.API.MathTools.EnumTransformFunction.yml @@ -27,8 +27,8 @@ items: source: remote: path: VintagestoryApi/Math/EnumTransformFunction.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumTransformFunction path: Math/EnumTransformFunction.cs startLine: 5 @@ -54,8 +54,8 @@ items: source: remote: path: VintagestoryApi/Math/EnumTransformFunction.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IDENTICAL path: Math/EnumTransformFunction.cs startLine: 10 @@ -82,8 +82,8 @@ items: source: remote: path: VintagestoryApi/Math/EnumTransformFunction.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LINEAR path: Math/EnumTransformFunction.cs startLine: 14 @@ -110,8 +110,8 @@ items: source: remote: path: VintagestoryApi/Math/EnumTransformFunction.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LINEARNULLIFY path: Math/EnumTransformFunction.cs startLine: 18 @@ -138,8 +138,8 @@ items: source: remote: path: VintagestoryApi/Math/EnumTransformFunction.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LINEARREDUCE path: Math/EnumTransformFunction.cs startLine: 22 @@ -166,8 +166,8 @@ items: source: remote: path: VintagestoryApi/Math/EnumTransformFunction.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LINEARINCREASE path: Math/EnumTransformFunction.cs startLine: 26 @@ -194,8 +194,8 @@ items: source: remote: path: VintagestoryApi/Math/EnumTransformFunction.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: QUADRATIC path: Math/EnumTransformFunction.cs startLine: 30 @@ -222,8 +222,8 @@ items: source: remote: path: VintagestoryApi/Math/EnumTransformFunction.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: INVERSELINEAR path: Math/EnumTransformFunction.cs startLine: 34 @@ -250,8 +250,8 @@ items: source: remote: path: VintagestoryApi/Math/EnumTransformFunction.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ROOT path: Math/EnumTransformFunction.cs startLine: 38 @@ -278,8 +278,8 @@ items: source: remote: path: VintagestoryApi/Math/EnumTransformFunction.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SINUS path: Math/EnumTransformFunction.cs startLine: 42 @@ -306,8 +306,8 @@ items: source: remote: path: VintagestoryApi/Math/EnumTransformFunction.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CLAMPEDPOSITIVESINUS path: Math/EnumTransformFunction.cs startLine: 46 @@ -334,8 +334,8 @@ items: source: remote: path: VintagestoryApi/Math/EnumTransformFunction.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: COSINUS path: Math/EnumTransformFunction.cs startLine: 50 @@ -362,8 +362,8 @@ items: source: remote: path: VintagestoryApi/Math/EnumTransformFunction.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SMOOTHSTEP path: Math/EnumTransformFunction.cs startLine: 54 diff --git a/api/Vintagestory.API.MathTools.EvolvingNatFloat.yml b/api/Vintagestory.API.MathTools.EvolvingNatFloat.yml index 914410f2..29b3a0a1 100644 --- a/api/Vintagestory.API.MathTools.EvolvingNatFloat.yml +++ b/api/Vintagestory.API.MathTools.EvolvingNatFloat.yml @@ -27,8 +27,8 @@ items: source: remote: path: VintagestoryApi/Math/EvolvingNatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EvolvingNatFloat path: Math/EvolvingNatFloat.cs startLine: 11 @@ -76,8 +76,8 @@ items: source: remote: path: VintagestoryApi/Math/EvolvingNatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Factor path: Math/EvolvingNatFloat.cs startLine: 59 @@ -105,8 +105,8 @@ items: source: remote: path: VintagestoryApi/Math/EvolvingNatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxValue path: Math/EvolvingNatFloat.cs startLine: 64 @@ -134,8 +134,8 @@ items: source: remote: path: VintagestoryApi/Math/EvolvingNatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Transform path: Math/EvolvingNatFloat.cs startLine: 69 @@ -163,8 +163,8 @@ items: source: remote: path: VintagestoryApi/Math/EvolvingNatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/EvolvingNatFloat.cs startLine: 74 @@ -192,8 +192,8 @@ items: source: remote: path: VintagestoryApi/Math/EvolvingNatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/EvolvingNatFloat.cs startLine: 78 @@ -226,8 +226,8 @@ items: source: remote: path: VintagestoryApi/Math/EvolvingNatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: createIdentical path: Math/EvolvingNatFloat.cs startLine: 84 @@ -260,8 +260,8 @@ items: source: remote: path: VintagestoryApi/Math/EvolvingNatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: create path: Math/EvolvingNatFloat.cs startLine: 89 @@ -296,8 +296,8 @@ items: source: remote: path: VintagestoryApi/Math/EvolvingNatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: nextFloat path: Math/EvolvingNatFloat.cs startLine: 109 @@ -337,8 +337,8 @@ items: source: remote: path: VintagestoryApi/Math/EvolvingNatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Math/EvolvingNatFloat.cs startLine: 117 @@ -365,8 +365,8 @@ items: source: remote: path: VintagestoryApi/Math/EvolvingNatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Math/EvolvingNatFloat.cs startLine: 123 @@ -394,8 +394,8 @@ items: source: remote: path: VintagestoryApi/Math/EvolvingNatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Math/EvolvingNatFloat.cs startLine: 129 @@ -423,8 +423,8 @@ items: source: remote: path: VintagestoryApi/Math/EvolvingNatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateFromBytes path: Math/EvolvingNatFloat.cs startLine: 136 diff --git a/api/Vintagestory.API.MathTools.FastVec3d.yml b/api/Vintagestory.API.MathTools.FastVec3d.yml index c77fdc89..61cdd89b 100644 --- a/api/Vintagestory.API.MathTools.FastVec3d.yml +++ b/api/Vintagestory.API.MathTools.FastVec3d.yml @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FastVec3d path: Math/Vector/FastVec3d.cs startLine: 8 @@ -86,8 +86,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X path: Math/Vector/FastVec3d.cs startLine: 13 @@ -115,8 +115,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y path: Math/Vector/FastVec3d.cs startLine: 17 @@ -144,8 +144,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Z path: Math/Vector/FastVec3d.cs startLine: 21 @@ -173,8 +173,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/FastVec3d.cs startLine: 30 @@ -214,8 +214,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/FastVec3d.cs startLine: 41 @@ -249,8 +249,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/FastVec3d.cs startLine: 52 @@ -284,8 +284,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/FastVec3d.cs startLine: 59 @@ -316,8 +316,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/FastVec3d.cs startLine: 66 @@ -348,8 +348,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Math/Vector/FastVec3d.cs startLine: 78 @@ -386,8 +386,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Length path: Math/Vector/FastVec3d.cs startLine: 89 @@ -417,8 +417,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Negate path: Math/Vector/FastVec3d.cs startLine: 94 @@ -443,8 +443,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dot path: Math/Vector/FastVec3d.cs startLine: 108 @@ -478,8 +478,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dot path: Math/Vector/FastVec3d.cs startLine: 118 @@ -513,8 +513,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dot path: Math/Vector/FastVec3d.cs startLine: 128 @@ -551,8 +551,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dot path: Math/Vector/FastVec3d.cs startLine: 138 @@ -589,8 +589,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToDoubleArray path: Math/Vector/FastVec3d.cs startLine: 143 @@ -617,8 +617,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Math/Vector/FastVec3d.cs startLine: 155 @@ -661,8 +661,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Math/Vector/FastVec3d.cs startLine: 163 @@ -695,8 +695,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Math/Vector/FastVec3d.cs startLine: 174 @@ -728,8 +728,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Math/Vector/FastVec3d.cs startLine: 185 @@ -761,8 +761,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mul path: Math/Vector/FastVec3d.cs startLine: 198 @@ -799,8 +799,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Math/Vector/FastVec3d.cs startLine: 210 @@ -830,8 +830,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Normalize path: Math/Vector/FastVec3d.cs startLine: 219 @@ -861,8 +861,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Distance path: Math/Vector/FastVec3d.cs startLine: 238 @@ -896,8 +896,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DistanceSq path: Math/Vector/FastVec3d.cs startLine: 255 @@ -940,8 +940,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Distance path: Math/Vector/FastVec3d.cs startLine: 270 @@ -975,8 +975,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddCopy path: Math/Vector/FastVec3d.cs startLine: 286 @@ -1019,8 +1019,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddCopy path: Math/Vector/FastVec3d.cs startLine: 296 @@ -1054,8 +1054,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReduceBy path: Math/Vector/FastVec3d.cs startLine: 307 @@ -1089,8 +1089,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NormalizedCopy path: Math/Vector/FastVec3d.cs startLine: 318 @@ -1120,8 +1120,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToVec3d path: Math/Vector/FastVec3d.cs startLine: 332 @@ -1151,8 +1151,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Vector/FastVec3d.cs startLine: 343 @@ -1194,8 +1194,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Vector/FastVec3d.cs startLine: 355 @@ -1228,8 +1228,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Vector/FastVec3d.cs startLine: 363 @@ -1262,8 +1262,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Vector/FastVec3d.cs startLine: 375 @@ -1294,8 +1294,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Math/Vector/FastVec3d.cs startLine: 386 @@ -1326,8 +1326,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Write path: Math/Vector/FastVec3d.cs startLine: 392 @@ -1355,8 +1355,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateFromBytes path: Math/Vector/FastVec3d.cs startLine: 399 diff --git a/api/Vintagestory.API.MathTools.FastVec3f.yml b/api/Vintagestory.API.MathTools.FastVec3f.yml index 21234c96..c06ba90a 100644 --- a/api/Vintagestory.API.MathTools.FastVec3f.yml +++ b/api/Vintagestory.API.MathTools.FastVec3f.yml @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FastVec3f path: Math/Vector/FastVec3f.cs startLine: 8 @@ -85,8 +85,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X path: Math/Vector/FastVec3f.cs startLine: 13 @@ -114,8 +114,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y path: Math/Vector/FastVec3f.cs startLine: 17 @@ -143,8 +143,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Z path: Math/Vector/FastVec3f.cs startLine: 21 @@ -172,8 +172,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: R path: Math/Vector/FastVec3f.cs startLine: 27 @@ -203,8 +203,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: G path: Math/Vector/FastVec3f.cs startLine: 31 @@ -234,8 +234,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: B path: Math/Vector/FastVec3f.cs startLine: 35 @@ -265,8 +265,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/FastVec3f.cs startLine: 43 @@ -306,8 +306,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/FastVec3f.cs startLine: 54 @@ -341,8 +341,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/FastVec3f.cs startLine: 65 @@ -376,8 +376,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/FastVec3f.cs startLine: 72 @@ -408,8 +408,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Math/Vector/FastVec3f.cs startLine: 84 @@ -446,8 +446,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Length path: Math/Vector/FastVec3f.cs startLine: 95 @@ -477,8 +477,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Negate path: Math/Vector/FastVec3f.cs startLine: 100 @@ -503,8 +503,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dot path: Math/Vector/FastVec3f.cs startLine: 114 @@ -538,8 +538,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dot path: Math/Vector/FastVec3f.cs startLine: 124 @@ -573,8 +573,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dot path: Math/Vector/FastVec3f.cs startLine: 134 @@ -611,8 +611,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dot path: Math/Vector/FastVec3f.cs startLine: 144 @@ -649,8 +649,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToDoubleArray path: Math/Vector/FastVec3f.cs startLine: 149 @@ -677,8 +677,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Math/Vector/FastVec3f.cs startLine: 161 @@ -721,8 +721,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mul path: Math/Vector/FastVec3f.cs startLine: 174 @@ -759,8 +759,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Math/Vector/FastVec3f.cs startLine: 186 @@ -790,8 +790,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Normalize path: Math/Vector/FastVec3f.cs startLine: 195 @@ -821,8 +821,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Distance path: Math/Vector/FastVec3f.cs startLine: 214 @@ -856,8 +856,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DistanceSq path: Math/Vector/FastVec3f.cs startLine: 231 @@ -900,8 +900,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Distance path: Math/Vector/FastVec3f.cs startLine: 246 @@ -935,8 +935,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddCopy path: Math/Vector/FastVec3f.cs startLine: 262 @@ -979,8 +979,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddCopy path: Math/Vector/FastVec3f.cs startLine: 272 @@ -1014,8 +1014,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReduceBy path: Math/Vector/FastVec3f.cs startLine: 283 @@ -1049,8 +1049,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NormalizedCopy path: Math/Vector/FastVec3f.cs startLine: 294 @@ -1080,8 +1080,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToVec3d path: Math/Vector/FastVec3f.cs startLine: 308 @@ -1111,8 +1111,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Vector/FastVec3f.cs startLine: 319 @@ -1154,8 +1154,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Vector/FastVec3f.cs startLine: 331 @@ -1188,8 +1188,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Vector/FastVec3f.cs startLine: 339 @@ -1222,8 +1222,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Vector/FastVec3f.cs startLine: 351 @@ -1254,8 +1254,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Math/Vector/FastVec3f.cs startLine: 362 @@ -1286,8 +1286,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Write path: Math/Vector/FastVec3f.cs startLine: 368 @@ -1315,8 +1315,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateFromBytes path: Math/Vector/FastVec3f.cs startLine: 375 diff --git a/api/Vintagestory.API.MathTools.FastVec3i.yml b/api/Vintagestory.API.MathTools.FastVec3i.yml index 245ebba9..08a79f5c 100644 --- a/api/Vintagestory.API.MathTools.FastVec3i.yml +++ b/api/Vintagestory.API.MathTools.FastVec3i.yml @@ -46,8 +46,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FastVec3i path: Math/Vector/FastVec3i.cs startLine: 9 @@ -79,8 +79,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X path: Math/Vector/FastVec3i.cs startLine: 14 @@ -108,8 +108,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y path: Math/Vector/FastVec3i.cs startLine: 18 @@ -137,8 +137,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Z path: Math/Vector/FastVec3i.cs startLine: 22 @@ -166,8 +166,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: R path: Math/Vector/FastVec3i.cs startLine: 28 @@ -197,8 +197,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: G path: Math/Vector/FastVec3i.cs startLine: 32 @@ -228,8 +228,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: B path: Math/Vector/FastVec3i.cs startLine: 36 @@ -259,8 +259,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/FastVec3i.cs startLine: 44 @@ -300,8 +300,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/FastVec3i.cs startLine: 55 @@ -335,8 +335,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/FastVec3i.cs startLine: 66 @@ -370,8 +370,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/FastVec3i.cs startLine: 73 @@ -402,8 +402,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Math/Vector/FastVec3i.cs startLine: 85 @@ -440,8 +440,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Math/Vector/FastVec3i.cs startLine: 91 @@ -471,8 +471,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Math/Vector/FastVec3i.cs startLine: 96 @@ -502,8 +502,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Math/Vector/FastVec3i.cs startLine: 101 @@ -533,8 +533,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Length path: Math/Vector/FastVec3i.cs startLine: 110 @@ -564,8 +564,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Negate path: Math/Vector/FastVec3i.cs startLine: 115 @@ -590,8 +590,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Math/Vector/FastVec3i.cs startLine: 131 @@ -634,8 +634,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mul path: Math/Vector/FastVec3i.cs startLine: 144 @@ -672,8 +672,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Math/Vector/FastVec3i.cs startLine: 156 @@ -703,8 +703,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Distance path: Math/Vector/FastVec3i.cs startLine: 166 @@ -738,8 +738,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DistanceSq path: Math/Vector/FastVec3i.cs startLine: 183 @@ -782,8 +782,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Distance path: Math/Vector/FastVec3i.cs startLine: 198 @@ -817,8 +817,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddCopy path: Math/Vector/FastVec3i.cs startLine: 212 @@ -852,8 +852,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToVec3d path: Math/Vector/FastVec3i.cs startLine: 222 @@ -883,8 +883,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Vector/FastVec3i.cs startLine: 233 @@ -926,8 +926,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Vector/FastVec3i.cs startLine: 245 @@ -960,8 +960,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Vector/FastVec3i.cs startLine: 253 @@ -994,8 +994,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Vector/FastVec3i.cs startLine: 265 @@ -1026,8 +1026,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Math/Vector/FastVec3i.cs startLine: 276 @@ -1058,8 +1058,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Write path: Math/Vector/FastVec3i.cs startLine: 282 @@ -1087,8 +1087,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateFromBytes path: Math/Vector/FastVec3i.cs startLine: 289 diff --git a/api/Vintagestory.API.MathTools.FastVec3iComparer.yml b/api/Vintagestory.API.MathTools.FastVec3iComparer.yml index f591afd4..b85a8a92 100644 --- a/api/Vintagestory.API.MathTools.FastVec3iComparer.yml +++ b/api/Vintagestory.API.MathTools.FastVec3iComparer.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/FastVec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FastVec3iComparer path: Math/Vector/FastVec3i.cs startLine: 298 diff --git a/api/Vintagestory.API.MathTools.FluidBlockPos.yml b/api/Vintagestory.API.MathTools.FluidBlockPos.yml index a6df492a..313036aa 100644 --- a/api/Vintagestory.API.MathTools.FluidBlockPos.yml +++ b/api/Vintagestory.API.MathTools.FluidBlockPos.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FluidBlockPos path: Math/BlockPos.cs startLine: 838 @@ -123,8 +123,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/BlockPos.cs startLine: 840 @@ -152,8 +152,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/BlockPos.cs startLine: 844 @@ -190,8 +190,8 @@ items: source: remote: path: VintagestoryApi/Math/BlockPos.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Copy path: Math/BlockPos.cs startLine: 852 diff --git a/api/Vintagestory.API.MathTools.GameMath.yml b/api/Vintagestory.API.MathTools.GameMath.yml index a24896db..48242d69 100644 --- a/api/Vintagestory.API.MathTools.GameMath.yml +++ b/api/Vintagestory.API.MathTools.GameMath.yml @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GameMath path: Math/GameMath.cs startLine: 26 @@ -161,8 +161,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TWOPI path: Math/GameMath.cs startLine: 31 @@ -190,8 +190,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PI path: Math/GameMath.cs startLine: 35 @@ -219,8 +219,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PIHALF path: Math/GameMath.cs startLine: 39 @@ -248,8 +248,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DEG2RAD_DOUBLE path: Math/GameMath.cs startLine: 41 @@ -275,8 +275,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DEG2RAD path: Math/GameMath.cs startLine: 42 @@ -302,8 +302,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RAD2DEG path: Math/GameMath.cs startLine: 43 @@ -329,8 +329,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sin path: Math/GameMath.cs startLine: 48 @@ -363,8 +363,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Cos path: Math/GameMath.cs startLine: 53 @@ -397,8 +397,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Acos path: Math/GameMath.cs startLine: 58 @@ -431,8 +431,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Asin path: Math/GameMath.cs startLine: 63 @@ -465,8 +465,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Tan path: Math/GameMath.cs startLine: 69 @@ -499,8 +499,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sin path: Math/GameMath.cs startLine: 75 @@ -533,8 +533,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Cos path: Math/GameMath.cs startLine: 80 @@ -567,8 +567,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Acos path: Math/GameMath.cs startLine: 85 @@ -601,8 +601,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Asin path: Math/GameMath.cs startLine: 90 @@ -635,8 +635,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Tan path: Math/GameMath.cs startLine: 95 @@ -669,8 +669,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FastSin path: Math/GameMath.cs startLine: 108 @@ -707,8 +707,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FastCos path: Math/GameMath.cs startLine: 118 @@ -745,8 +745,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FastSinDeg path: Math/GameMath.cs startLine: 128 @@ -783,8 +783,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FastCosDeg path: Math/GameMath.cs startLine: 138 @@ -821,8 +821,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sqrt path: Math/GameMath.cs startLine: 180 @@ -855,8 +855,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sqrt path: Math/GameMath.cs startLine: 185 @@ -889,8 +889,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RootSumOfSquares path: Math/GameMath.cs startLine: 190 @@ -927,8 +927,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SumOfSquares path: Math/GameMath.cs startLine: 196 @@ -965,8 +965,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Square path: Math/GameMath.cs startLine: 202 @@ -999,8 +999,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clamp path: Math/GameMath.cs startLine: 219 @@ -1043,8 +1043,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clamp path: Math/GameMath.cs startLine: 232 @@ -1087,8 +1087,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clamp path: Math/GameMath.cs startLine: 245 @@ -1131,8 +1131,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clamp path: Math/GameMath.cs startLine: 258 @@ -1175,8 +1175,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InverseClamp path: Math/GameMath.cs startLine: 271 @@ -1219,8 +1219,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mod path: Math/GameMath.cs startLine: 285 @@ -1260,8 +1260,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mod path: Math/GameMath.cs startLine: 290 @@ -1296,8 +1296,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mod path: Math/GameMath.cs startLine: 301 @@ -1337,8 +1337,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mod path: Math/GameMath.cs startLine: 312 @@ -1378,8 +1378,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RoundRandom path: Math/GameMath.cs startLine: 327 @@ -1419,8 +1419,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RoundRandom path: Math/GameMath.cs startLine: 338 @@ -1460,8 +1460,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AngleDegDistance path: Math/GameMath.cs startLine: 351 @@ -1504,8 +1504,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AngleRadDistance path: Math/GameMath.cs startLine: 363 @@ -1548,8 +1548,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NormaliseAngleRad path: Math/GameMath.cs startLine: 373 @@ -1586,8 +1586,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Smallest path: Math/GameMath.cs startLine: 393 @@ -1632,8 +1632,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Largest path: Math/GameMath.cs startLine: 411 @@ -1673,8 +1673,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CyclicValueDistance path: Math/GameMath.cs startLine: 431 @@ -1720,8 +1720,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CyclicValueDistance path: Math/GameMath.cs startLine: 444 @@ -1767,8 +1767,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GenGaussKernel path: Math/GameMath.cs startLine: 456 @@ -1808,8 +1808,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BiLerpColorMap path: Math/GameMath.cs startLine: 494 @@ -1852,8 +1852,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BiLerpByte path: Math/GameMath.cs startLine: 548 @@ -1908,8 +1908,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BiSerpByte path: Math/GameMath.cs startLine: 567 @@ -1964,8 +1964,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BiLerpRgbaColor path: Math/GameMath.cs startLine: 584 @@ -2017,8 +2017,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BiLerpRgbColor path: Math/GameMath.cs startLine: 602 @@ -2070,8 +2070,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BiSerpRgbColor path: Math/GameMath.cs startLine: 627 @@ -2123,8 +2123,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LerpRgbColor path: Math/GameMath.cs startLine: 639 @@ -2167,8 +2167,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LerpRgbaColor path: Math/GameMath.cs startLine: 657 @@ -2211,8 +2211,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LerpByte path: Math/GameMath.cs startLine: 675 @@ -2255,8 +2255,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BiLerp path: Math/GameMath.cs startLine: 692 @@ -2308,8 +2308,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BiLerp path: Math/GameMath.cs startLine: 710 @@ -2361,8 +2361,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mix path: Math/GameMath.cs startLine: 724 @@ -2405,8 +2405,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mix path: Math/GameMath.cs startLine: 739 @@ -2449,8 +2449,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Lerp path: Math/GameMath.cs startLine: 753 @@ -2493,8 +2493,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Lerp path: Math/GameMath.cs startLine: 766 @@ -2537,8 +2537,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Serp path: Math/GameMath.cs startLine: 779 @@ -2581,8 +2581,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CPCatmullRomSplineLerp path: Math/GameMath.cs startLine: 798 @@ -2634,8 +2634,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SmoothStep path: Math/GameMath.cs startLine: 819 @@ -2672,8 +2672,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SmoothStep path: Math/GameMath.cs startLine: 827 @@ -2710,8 +2710,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Smootherstep path: Math/GameMath.cs startLine: 837 @@ -2754,8 +2754,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Smootherstep path: Math/GameMath.cs startLine: 853 @@ -2798,8 +2798,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Smootherstep path: Math/GameMath.cs startLine: 868 @@ -2836,8 +2836,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TriangleStep path: Math/GameMath.cs startLine: 891 @@ -2880,8 +2880,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TriangleStep path: Math/GameMath.cs startLine: 914 @@ -2924,8 +2924,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TriangleStepFast path: Math/GameMath.cs startLine: 930 @@ -2968,8 +2968,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Max path: Math/GameMath.cs startLine: 944 @@ -3002,8 +3002,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Max path: Math/GameMath.cs startLine: 954 @@ -3036,8 +3036,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Max path: Math/GameMath.cs startLine: 964 @@ -3070,8 +3070,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Min path: Math/GameMath.cs startLine: 974 @@ -3104,8 +3104,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Min path: Math/GameMath.cs startLine: 984 @@ -3138,8 +3138,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SmoothMin path: Math/GameMath.cs startLine: 994 @@ -3176,8 +3176,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SmoothMax path: Math/GameMath.cs startLine: 1000 @@ -3214,8 +3214,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SmoothMin path: Math/GameMath.cs startLine: 1006 @@ -3252,8 +3252,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SmoothMax path: Math/GameMath.cs startLine: 1012 @@ -3290,8 +3290,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Crc32 path: Math/GameMath.cs startLine: 1022 @@ -3324,8 +3324,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Crc32 path: Math/GameMath.cs startLine: 1027 @@ -3358,8 +3358,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DotNetStringHash path: Math/GameMath.cs startLine: 1038 @@ -3399,8 +3399,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Md5Hash path: Math/GameMath.cs startLine: 1073 @@ -3437,8 +3437,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: oaatHashMany path: Math/GameMath.cs startLine: 1121 @@ -3478,8 +3478,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: oaatHashUMany path: Math/GameMath.cs startLine: 1140 @@ -3516,8 +3516,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: oaatHash path: Math/GameMath.cs startLine: 1161 @@ -3551,8 +3551,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: oaatHash path: Math/GameMath.cs startLine: 1170 @@ -3592,8 +3592,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: oaatHash path: Math/GameMath.cs startLine: 1178 @@ -3627,8 +3627,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: oaatHash path: Math/GameMath.cs startLine: 1188 @@ -3671,8 +3671,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: oaatHashU path: Math/GameMath.cs startLine: 1198 @@ -3715,8 +3715,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: oaatHash path: Math/GameMath.cs startLine: 1206 @@ -3750,8 +3750,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PrettyBadHash path: Math/GameMath.cs startLine: 1215 @@ -3791,8 +3791,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MurmurHash3Mod path: Math/GameMath.cs startLine: 1228 @@ -3838,8 +3838,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MurmurHash3 path: Math/GameMath.cs startLine: 1242 @@ -3882,8 +3882,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: R2Sequence1D path: Math/GameMath.cs startLine: 1289 @@ -3920,8 +3920,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: R2Sequence2D path: Math/GameMath.cs startLine: 1301 @@ -3958,8 +3958,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: R2Sequence3D path: Math/GameMath.cs startLine: 1314 @@ -3996,8 +3996,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FlipVal path: Math/GameMath.cs startLine: 1334 @@ -4034,8 +4034,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FlipVal path: Math/GameMath.cs startLine: 1346 @@ -4072,8 +4072,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Shuffle path: Math/GameMath.cs startLine: 1359 @@ -4113,8 +4113,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Shuffle path: Math/GameMath.cs startLine: 1379 @@ -4154,8 +4154,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Shuffle path: Math/GameMath.cs startLine: 1400 @@ -4195,8 +4195,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BresenHamPlotLine3d path: Math/GameMath.cs startLine: 1425 @@ -4248,8 +4248,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BresenHamPlotLine3d path: Math/GameMath.cs startLine: 1454 @@ -4301,8 +4301,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BresenHamPlotLine2d path: Math/GameMath.cs startLine: 1483 @@ -4348,8 +4348,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToEulerAngles path: Math/GameMath.cs startLine: 1499 @@ -4379,8 +4379,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToEulerAngles path: Math/GameMath.cs startLine: 1505 @@ -4410,8 +4410,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IntFromBools path: Math/GameMath.cs startLine: 1526 @@ -4444,8 +4444,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IntFromBools path: Math/GameMath.cs startLine: 1537 @@ -4478,8 +4478,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BoolsFromInt path: Math/GameMath.cs startLine: 1548 diff --git a/api/Vintagestory.API.MathTools.HorRectanglei.yml b/api/Vintagestory.API.MathTools.HorRectanglei.yml index eea6b097..68c4d2e7 100644 --- a/api/Vintagestory.API.MathTools.HorRectanglei.yml +++ b/api/Vintagestory.API.MathTools.HorRectanglei.yml @@ -25,8 +25,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglei.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HorRectanglei path: Math/Rectangle/Rectanglei.cs startLine: 4 @@ -60,8 +60,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglei.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X1 path: Math/Rectangle/Rectanglei.cs startLine: 6 @@ -87,8 +87,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglei.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Z1 path: Math/Rectangle/Rectanglei.cs startLine: 7 @@ -114,8 +114,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglei.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X2 path: Math/Rectangle/Rectanglei.cs startLine: 8 @@ -141,8 +141,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglei.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Z2 path: Math/Rectangle/Rectanglei.cs startLine: 9 @@ -168,8 +168,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglei.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Rectangle/Rectanglei.cs startLine: 11 @@ -197,8 +197,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglei.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Rectangle/Rectanglei.cs startLine: 15 @@ -235,8 +235,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglei.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinX path: Math/Rectangle/Rectanglei.cs startLine: 23 @@ -264,8 +264,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglei.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxX path: Math/Rectangle/Rectanglei.cs startLine: 24 @@ -293,8 +293,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglei.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxZ path: Math/Rectangle/Rectanglei.cs startLine: 25 @@ -322,8 +322,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglei.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MinZ path: Math/Rectangle/Rectanglei.cs startLine: 26 diff --git a/api/Vintagestory.API.MathTools.IRandom.yml b/api/Vintagestory.API.MathTools.IRandom.yml index 326a45e5..5072cabc 100644 --- a/api/Vintagestory.API.MathTools.IRandom.yml +++ b/api/Vintagestory.API.MathTools.IRandom.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Math/LCGRandom.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IRandom path: Math/LCGRandom.cs startLine: 5 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Math/LCGRandom.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NextInt path: Math/LCGRandom.cs startLine: 7 @@ -77,8 +77,8 @@ items: source: remote: path: VintagestoryApi/Math/LCGRandom.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NextInt path: Math/LCGRandom.cs startLine: 8 @@ -105,8 +105,8 @@ items: source: remote: path: VintagestoryApi/Math/LCGRandom.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NextDouble path: Math/LCGRandom.cs startLine: 9 diff --git a/api/Vintagestory.API.MathTools.IVec3.yml b/api/Vintagestory.API.MathTools.IVec3.yml index e93a7281..4a49bd39 100644 --- a/api/Vintagestory.API.MathTools.IVec3.yml +++ b/api/Vintagestory.API.MathTools.IVec3.yml @@ -25,8 +25,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/IVec3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IVec3 path: Math/Vector/IVec3.cs startLine: 2 @@ -50,8 +50,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/IVec3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XAsInt path: Math/Vector/IVec3.cs startLine: 5 @@ -79,8 +79,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/IVec3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: YAsInt path: Math/Vector/IVec3.cs startLine: 7 @@ -108,8 +108,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/IVec3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ZAsInt path: Math/Vector/IVec3.cs startLine: 9 @@ -137,8 +137,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/IVec3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XAsDouble path: Math/Vector/IVec3.cs startLine: 11 @@ -166,8 +166,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/IVec3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: YAsDouble path: Math/Vector/IVec3.cs startLine: 13 @@ -195,8 +195,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/IVec3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ZAsDouble path: Math/Vector/IVec3.cs startLine: 15 @@ -224,8 +224,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/IVec3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XAsFloat path: Math/Vector/IVec3.cs startLine: 17 @@ -253,8 +253,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/IVec3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: YAsFloat path: Math/Vector/IVec3.cs startLine: 19 @@ -282,8 +282,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/IVec3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ZAsFloat path: Math/Vector/IVec3.cs startLine: 21 @@ -311,8 +311,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/IVec3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AsVec3i path: Math/Vector/IVec3.cs startLine: 23 diff --git a/api/Vintagestory.API.MathTools.IWorldIntersectionSupplier.yml b/api/Vintagestory.API.MathTools.IWorldIntersectionSupplier.yml index ee9fa460..cd339124 100644 --- a/api/Vintagestory.API.MathTools.IWorldIntersectionSupplier.yml +++ b/api/Vintagestory.API.MathTools.IWorldIntersectionSupplier.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Math/AABBIntersectionTest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IWorldIntersectionSupplier path: Math/AABBIntersectionTest.cs startLine: 287 @@ -46,8 +46,8 @@ items: source: remote: path: VintagestoryApi/Math/AABBIntersectionTest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlock path: Math/AABBIntersectionTest.cs startLine: 289 @@ -77,8 +77,8 @@ items: source: remote: path: VintagestoryApi/Math/AABBIntersectionTest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlockIntersectionBoxes path: Math/AABBIntersectionTest.cs startLine: 291 @@ -108,8 +108,8 @@ items: source: remote: path: VintagestoryApi/Math/AABBIntersectionTest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetEntitiesAround path: Math/AABBIntersectionTest.cs startLine: 293 @@ -148,8 +148,8 @@ items: source: remote: path: VintagestoryApi/Math/AABBIntersectionTest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsValidPos path: Math/AABBIntersectionTest.cs startLine: 295 @@ -179,8 +179,8 @@ items: source: remote: path: VintagestoryApi/Math/AABBIntersectionTest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MapSize path: Math/AABBIntersectionTest.cs startLine: 297 @@ -208,8 +208,8 @@ items: source: remote: path: VintagestoryApi/Math/AABBIntersectionTest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: blockAccessor path: Math/AABBIntersectionTest.cs startLine: 299 diff --git a/api/Vintagestory.API.MathTools.LCGRandom.yml b/api/Vintagestory.API.MathTools.LCGRandom.yml index 9cc3c9fb..1f5103d0 100644 --- a/api/Vintagestory.API.MathTools.LCGRandom.yml +++ b/api/Vintagestory.API.MathTools.LCGRandom.yml @@ -28,8 +28,8 @@ items: source: remote: path: VintagestoryApi/Math/LCGRandom.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LCGRandom path: Math/LCGRandom.cs startLine: 37 @@ -70,8 +70,8 @@ items: source: remote: path: VintagestoryApi/Math/LCGRandom.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: worldSeed path: Math/LCGRandom.cs startLine: 39 @@ -97,8 +97,8 @@ items: source: remote: path: VintagestoryApi/Math/LCGRandom.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: mapGenSeed path: Math/LCGRandom.cs startLine: 40 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Math/LCGRandom.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: currentSeed path: Math/LCGRandom.cs startLine: 41 @@ -151,8 +151,8 @@ items: source: remote: path: VintagestoryApi/Math/LCGRandom.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/LCGRandom.cs startLine: 58 @@ -186,8 +186,8 @@ items: source: remote: path: VintagestoryApi/Math/LCGRandom.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/LCGRandom.cs startLine: 66 @@ -217,8 +217,8 @@ items: source: remote: path: VintagestoryApi/Math/LCGRandom.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetWorldSeed path: Math/LCGRandom.cs startLine: 75 @@ -252,8 +252,8 @@ items: source: remote: path: VintagestoryApi/Math/LCGRandom.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InitPositionSeed path: Math/LCGRandom.cs startLine: 96 @@ -290,8 +290,8 @@ items: source: remote: path: VintagestoryApi/Math/LCGRandom.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InitPositionSeed path: Math/LCGRandom.cs startLine: 118 @@ -331,8 +331,8 @@ items: source: remote: path: VintagestoryApi/Math/LCGRandom.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NextInt path: Math/LCGRandom.cs startLine: 141 @@ -371,8 +371,8 @@ items: source: remote: path: VintagestoryApi/Math/LCGRandom.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NextInt path: Math/LCGRandom.cs startLine: 161 @@ -404,8 +404,8 @@ items: source: remote: path: VintagestoryApi/Math/LCGRandom.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NextFloat path: Math/LCGRandom.cs startLine: 174 @@ -435,8 +435,8 @@ items: source: remote: path: VintagestoryApi/Math/LCGRandom.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NextFloatMinusToPlusOne path: Math/LCGRandom.cs startLine: 188 @@ -469,8 +469,8 @@ items: source: remote: path: VintagestoryApi/Math/LCGRandom.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NextDouble path: Math/LCGRandom.cs startLine: 201 diff --git a/api/Vintagestory.API.MathTools.Line3D.yml b/api/Vintagestory.API.MathTools.Line3D.yml index 1be9f957..4f78d911 100644 --- a/api/Vintagestory.API.MathTools.Line3D.yml +++ b/api/Vintagestory.API.MathTools.Line3D.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Math/AABBIntersectionTest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Line3D path: Math/AABBIntersectionTest.cs startLine: 6 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Math/AABBIntersectionTest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Start path: Math/AABBIntersectionTest.cs startLine: 8 @@ -79,8 +79,8 @@ items: source: remote: path: VintagestoryApi/Math/AABBIntersectionTest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: End path: Math/AABBIntersectionTest.cs startLine: 9 diff --git a/api/Vintagestory.API.MathTools.MapUtil.yml b/api/Vintagestory.API.MathTools.MapUtil.yml index 12363875..4e9ce690 100644 --- a/api/Vintagestory.API.MathTools.MapUtil.yml +++ b/api/Vintagestory.API.MathTools.MapUtil.yml @@ -26,8 +26,8 @@ items: source: remote: path: VintagestoryApi/Math/MapUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MapUtil path: Math/MapUtil.cs startLine: 2 @@ -61,8 +61,8 @@ items: source: remote: path: VintagestoryApi/Math/MapUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Index3dL path: Math/MapUtil.cs startLine: 4 @@ -103,8 +103,8 @@ items: source: remote: path: VintagestoryApi/Math/MapUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Index3d path: Math/MapUtil.cs startLine: 9 @@ -145,8 +145,8 @@ items: source: remote: path: VintagestoryApi/Math/MapUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Index3d path: Math/MapUtil.cs startLine: 14 @@ -187,8 +187,8 @@ items: source: remote: path: VintagestoryApi/Math/MapUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Index2d path: Math/MapUtil.cs startLine: 19 @@ -225,8 +225,8 @@ items: source: remote: path: VintagestoryApi/Math/MapUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Index2dL path: Math/MapUtil.cs startLine: 24 @@ -263,8 +263,8 @@ items: source: remote: path: VintagestoryApi/Math/MapUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PosInt3d path: Math/MapUtil.cs startLine: 30 @@ -301,8 +301,8 @@ items: source: remote: path: VintagestoryApi/Math/MapUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PosInt3d path: Math/MapUtil.cs startLine: 41 @@ -339,8 +339,8 @@ items: source: remote: path: VintagestoryApi/Math/MapUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PosInt2d path: Math/MapUtil.cs startLine: 52 @@ -375,8 +375,8 @@ items: source: remote: path: VintagestoryApi/Math/MapUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PosX path: Math/MapUtil.cs startLine: 63 @@ -413,8 +413,8 @@ items: source: remote: path: VintagestoryApi/Math/MapUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PosZ path: Math/MapUtil.cs startLine: 68 @@ -451,8 +451,8 @@ items: source: remote: path: VintagestoryApi/Math/MapUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PosY path: Math/MapUtil.cs startLine: 73 diff --git a/api/Vintagestory.API.MathTools.Mat22.yml b/api/Vintagestory.API.MathTools.Mat22.yml index c9d339c7..d13943e5 100644 --- a/api/Vintagestory.API.MathTools.Mat22.yml +++ b/api/Vintagestory.API.MathTools.Mat22.yml @@ -27,8 +27,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat22.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mat22 path: Math/Matrix/Mat22.cs startLine: 28 @@ -64,8 +64,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat22.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Create path: Math/Matrix/Mat22.cs startLine: 35 @@ -98,8 +98,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat22.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CloneIt path: Math/Matrix/Mat22.cs startLine: 51 @@ -139,8 +139,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat22.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Copy path: Math/Matrix/Mat22.cs startLine: 68 @@ -183,8 +183,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat22.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Identity_ path: Math/Matrix/Mat22.cs startLine: 83 @@ -224,8 +224,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat22.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Transpose path: Math/Matrix/Mat22.cs startLine: 99 @@ -268,8 +268,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat22.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Invert path: Math/Matrix/Mat22.cs startLine: 116 @@ -312,8 +312,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat22.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Adjoint path: Math/Matrix/Mat22.cs startLine: 145 @@ -356,8 +356,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat22.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Determinant path: Math/Matrix/Mat22.cs startLine: 163 @@ -397,8 +397,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat22.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Multiply path: Math/Matrix/Mat22.cs startLine: 176 @@ -444,8 +444,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat22.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mul path: Math/Matrix/Mat22.cs startLine: 194 @@ -488,8 +488,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat22.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rotate path: Math/Matrix/Mat22.cs startLine: 207 @@ -535,8 +535,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat22.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Scale path: Math/Matrix/Mat22.cs startLine: 227 diff --git a/api/Vintagestory.API.MathTools.Mat23.yml b/api/Vintagestory.API.MathTools.Mat23.yml index 43a543d8..ba960232 100644 --- a/api/Vintagestory.API.MathTools.Mat23.yml +++ b/api/Vintagestory.API.MathTools.Mat23.yml @@ -26,8 +26,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat23.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mat23 path: Math/Matrix/Mat23.cs startLine: 41 @@ -90,8 +90,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat23.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Create path: Math/Matrix/Mat23.cs startLine: 48 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat23.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CloneIt path: Math/Matrix/Mat23.cs startLine: 66 @@ -165,8 +165,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat23.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Copy path: Math/Matrix/Mat23.cs startLine: 85 @@ -209,8 +209,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat23.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Identity_ path: Math/Matrix/Mat23.cs startLine: 102 @@ -250,8 +250,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat23.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Invert path: Math/Matrix/Mat23.cs startLine: 120 @@ -294,8 +294,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat23.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Determinant path: Math/Matrix/Mat23.cs startLine: 148 @@ -335,8 +335,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat23.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Multiply path: Math/Matrix/Mat23.cs startLine: 162 @@ -382,8 +382,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat23.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mul path: Math/Matrix/Mat23.cs startLine: 185 @@ -426,8 +426,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat23.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rotate path: Math/Matrix/Mat23.cs startLine: 199 @@ -473,8 +473,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat23.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Scale path: Math/Matrix/Mat23.cs startLine: 227 @@ -520,8 +520,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat23.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Translate path: Math/Matrix/Mat23.cs startLine: 247 diff --git a/api/Vintagestory.API.MathTools.Mat3d.yml b/api/Vintagestory.API.MathTools.Mat3d.yml index 20268df3..a2290ac1 100644 --- a/api/Vintagestory.API.MathTools.Mat3d.yml +++ b/api/Vintagestory.API.MathTools.Mat3d.yml @@ -32,8 +32,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mat3d path: Math/Matrix/Mat3d.cs startLine: 25 @@ -67,8 +67,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Create path: Math/Matrix/Mat3d.cs startLine: 38 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromMat4 path: Math/Matrix/Mat3d.cs startLine: 60 @@ -133,8 +133,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CloneIt path: Math/Matrix/Mat3d.cs startLine: 80 @@ -168,8 +168,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Copy path: Math/Matrix/Mat3d.cs startLine: 102 @@ -205,8 +205,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Identity_ path: Math/Matrix/Mat3d.cs startLine: 122 @@ -240,8 +240,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Transpose path: Math/Matrix/Mat3d.cs startLine: 143 @@ -277,8 +277,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Invert path: Math/Matrix/Mat3d.cs startLine: 181 @@ -314,8 +314,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Adjoint path: Math/Matrix/Mat3d.cs startLine: 220 @@ -351,8 +351,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Determinant path: Math/Matrix/Mat3d.cs startLine: 244 @@ -386,8 +386,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Multiply path: Math/Matrix/Mat3d.cs startLine: 261 @@ -425,8 +425,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mul path: Math/Matrix/Mat3d.cs startLine: 289 @@ -464,8 +464,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Translate path: Math/Matrix/Mat3d.cs startLine: 301 @@ -503,8 +503,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rotate path: Math/Matrix/Mat3d.cs startLine: 330 @@ -542,8 +542,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Scale path: Math/Matrix/Mat3d.cs startLine: 361 @@ -581,8 +581,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromMat2d path: Math/Matrix/Mat3d.cs startLine: 386 @@ -618,8 +618,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromQuat path: Math/Matrix/Mat3d.cs startLine: 410 @@ -655,8 +655,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NormalFromMat4 path: Math/Matrix/Mat3d.cs startLine: 450 diff --git a/api/Vintagestory.API.MathTools.Mat3f.yml b/api/Vintagestory.API.MathTools.Mat3f.yml index 400e274e..9db16b46 100644 --- a/api/Vintagestory.API.MathTools.Mat3f.yml +++ b/api/Vintagestory.API.MathTools.Mat3f.yml @@ -32,8 +32,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mat3f path: Math/Matrix/Mat3f.cs startLine: 25 @@ -67,8 +67,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Create path: Math/Matrix/Mat3f.cs startLine: 38 @@ -96,8 +96,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromMat4 path: Math/Matrix/Mat3f.cs startLine: 60 @@ -133,8 +133,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CloneIt path: Math/Matrix/Mat3f.cs startLine: 80 @@ -168,8 +168,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Copy path: Math/Matrix/Mat3f.cs startLine: 102 @@ -205,8 +205,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Identity_ path: Math/Matrix/Mat3f.cs startLine: 122 @@ -240,8 +240,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Transpose path: Math/Matrix/Mat3f.cs startLine: 143 @@ -277,8 +277,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Invert path: Math/Matrix/Mat3f.cs startLine: 181 @@ -314,8 +314,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Adjoint path: Math/Matrix/Mat3f.cs startLine: 220 @@ -351,8 +351,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Determinant path: Math/Matrix/Mat3f.cs startLine: 244 @@ -386,8 +386,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Multiply path: Math/Matrix/Mat3f.cs startLine: 261 @@ -425,8 +425,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mul path: Math/Matrix/Mat3f.cs startLine: 289 @@ -464,8 +464,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Translate path: Math/Matrix/Mat3f.cs startLine: 301 @@ -503,8 +503,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rotate path: Math/Matrix/Mat3f.cs startLine: 330 @@ -542,8 +542,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Scale path: Math/Matrix/Mat3f.cs startLine: 361 @@ -581,8 +581,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromMat2d path: Math/Matrix/Mat3f.cs startLine: 386 @@ -618,8 +618,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromQuat path: Math/Matrix/Mat3f.cs startLine: 410 @@ -655,8 +655,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NormalFromMat4 path: Math/Matrix/Mat3f.cs startLine: 450 diff --git a/api/Vintagestory.API.MathTools.Mat4d.yml b/api/Vintagestory.API.MathTools.Mat4d.yml index d08436e5..e13ac98c 100644 --- a/api/Vintagestory.API.MathTools.Mat4d.yml +++ b/api/Vintagestory.API.MathTools.Mat4d.yml @@ -47,8 +47,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mat4d path: Math/Matrix/Mat4d.cs startLine: 28 @@ -84,8 +84,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Create path: Math/Matrix/Mat4d.cs startLine: 38 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToMat4f path: Math/Matrix/Mat4d.cs startLine: 44 @@ -160,8 +160,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CloneIt path: Math/Matrix/Mat4d.cs startLine: 70 @@ -198,8 +198,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Copy path: Math/Matrix/Mat4d.cs startLine: 98 @@ -239,8 +239,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Identity path: Math/Matrix/Mat4d.cs startLine: 115 @@ -277,8 +277,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Transpose path: Math/Matrix/Mat4d.cs startLine: 142 @@ -318,8 +318,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Invert path: Math/Matrix/Mat4d.cs startLine: 193 @@ -359,8 +359,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Adjoint path: Math/Matrix/Mat4d.cs startLine: 249 @@ -400,8 +400,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Determinant path: Math/Matrix/Mat4d.cs startLine: 280 @@ -438,8 +438,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Multiply path: Math/Matrix/Mat4d.cs startLine: 312 @@ -482,8 +482,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Multiply path: Math/Matrix/Mat4d.cs startLine: 356 @@ -526,8 +526,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mul path: Math/Matrix/Mat4d.cs startLine: 398 @@ -570,8 +570,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mul path: Math/Matrix/Mat4d.cs startLine: 411 @@ -614,8 +614,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsTranslationOnly path: Math/Matrix/Mat4d.cs startLine: 423 @@ -657,8 +657,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Translate path: Math/Matrix/Mat4d.cs startLine: 446 @@ -707,8 +707,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Translate path: Math/Matrix/Mat4d.cs startLine: 485 @@ -751,8 +751,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Scale path: Math/Matrix/Mat4d.cs startLine: 525 @@ -795,8 +795,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Scale path: Math/Matrix/Mat4d.cs startLine: 548 @@ -833,8 +833,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rotate path: Math/Matrix/Mat4d.cs startLine: 572 @@ -880,8 +880,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rotate path: Math/Matrix/Mat4d.cs startLine: 588 @@ -933,8 +933,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotateX path: Math/Matrix/Mat4d.cs startLine: 651 @@ -977,8 +977,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotateY path: Math/Matrix/Mat4d.cs startLine: 696 @@ -1021,8 +1021,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotateZ path: Math/Matrix/Mat4d.cs startLine: 741 @@ -1065,8 +1065,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromRotationTranslation path: Math/Matrix/Mat4d.cs startLine: 792 @@ -1117,8 +1117,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromQuat path: Math/Matrix/Mat4d.cs startLine: 836 @@ -1158,8 +1158,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Frustum path: Math/Matrix/Mat4d.cs startLine: 887 @@ -1214,8 +1214,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Perspective path: Math/Matrix/Mat4d.cs startLine: 920 @@ -1264,8 +1264,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Ortho path: Math/Matrix/Mat4d.cs startLine: 955 @@ -1320,8 +1320,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LookAt path: Math/Matrix/Mat4d.cs startLine: 987 @@ -1367,8 +1367,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MulWithVec4 path: Math/Matrix/Mat4d.cs startLine: 1080 @@ -1411,8 +1411,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MulWithVec4 path: Math/Matrix/Mat4d.cs startLine: 1102 @@ -1452,8 +1452,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MulWithVec4 path: Math/Matrix/Mat4d.cs startLine: 1124 diff --git a/api/Vintagestory.API.MathTools.Mat4f.yml b/api/Vintagestory.API.MathTools.Mat4f.yml index e41adc15..912ec848 100644 --- a/api/Vintagestory.API.MathTools.Mat4f.yml +++ b/api/Vintagestory.API.MathTools.Mat4f.yml @@ -64,8 +64,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mat4f path: Math/Matrix/Mat4f.cs startLine: 31 @@ -101,8 +101,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Create path: Math/Matrix/Mat4f.cs startLine: 41 @@ -141,8 +141,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CloneIt path: Math/Matrix/Mat4f.cs startLine: 57 @@ -179,8 +179,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Copy path: Math/Matrix/Mat4f.cs startLine: 85 @@ -220,8 +220,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Identity path: Math/Matrix/Mat4f.cs startLine: 111 @@ -258,8 +258,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Identity_Scaled path: Math/Matrix/Mat4f.cs startLine: 139 @@ -299,8 +299,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Transpose path: Math/Matrix/Mat4f.cs startLine: 167 @@ -340,8 +340,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Invert path: Math/Matrix/Mat4f.cs startLine: 218 @@ -381,8 +381,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Adjoint path: Math/Matrix/Mat4f.cs startLine: 274 @@ -422,8 +422,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Determinant path: Math/Matrix/Mat4f.cs startLine: 305 @@ -460,8 +460,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Multiply path: Math/Matrix/Mat4f.cs startLine: 337 @@ -504,8 +504,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mul path: Math/Matrix/Mat4f.cs startLine: 378 @@ -548,8 +548,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Translate path: Math/Matrix/Mat4f.cs startLine: 393 @@ -598,8 +598,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Translate path: Math/Matrix/Mat4f.cs startLine: 432 @@ -642,8 +642,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Scale path: Math/Matrix/Mat4f.cs startLine: 472 @@ -686,8 +686,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SimpleScaleMatrix path: Math/Matrix/Mat4f.cs startLine: 495 @@ -724,8 +724,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Scale path: Math/Matrix/Mat4f.cs startLine: 514 @@ -774,8 +774,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rotate path: Math/Matrix/Mat4f.cs startLine: 543 @@ -821,8 +821,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotateX path: Math/Matrix/Mat4f.cs startLine: 607 @@ -865,8 +865,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotateY path: Math/Matrix/Mat4f.cs startLine: 652 @@ -909,8 +909,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotateZ path: Math/Matrix/Mat4f.cs startLine: 697 @@ -953,8 +953,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotateXYZ path: Math/Matrix/Mat4f.cs startLine: 744 @@ -1000,8 +1000,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromRotationTranslation path: Math/Matrix/Mat4f.cs startLine: 785 @@ -1052,8 +1052,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromQuat path: Math/Matrix/Mat4f.cs startLine: 829 @@ -1093,8 +1093,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Frustum path: Math/Matrix/Mat4f.cs startLine: 880 @@ -1149,8 +1149,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Perspective path: Math/Matrix/Mat4f.cs startLine: 913 @@ -1199,8 +1199,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Ortho path: Math/Matrix/Mat4f.cs startLine: 948 @@ -1255,8 +1255,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LookAt path: Math/Matrix/Mat4f.cs startLine: 980 @@ -1302,8 +1302,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MulWithVec4 path: Math/Matrix/Mat4f.cs startLine: 1073 @@ -1346,8 +1346,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MulWithVec4 path: Math/Matrix/Mat4f.cs startLine: 1089 @@ -1388,8 +1388,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MulWithVec4 path: Math/Matrix/Mat4f.cs startLine: 1105 @@ -1424,8 +1424,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MulWithVec4 path: Math/Matrix/Mat4f.cs startLine: 1110 @@ -1460,8 +1460,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MulWithVec3 path: Math/Matrix/Mat4f.cs startLine: 1126 @@ -1498,8 +1498,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MulWithVec3 path: Math/Matrix/Mat4f.cs startLine: 1134 @@ -1536,8 +1536,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MulWithVec3_Position path: Math/Matrix/Mat4f.cs startLine: 1148 @@ -1579,8 +1579,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MulWithVec3_Position path: Math/Matrix/Mat4f.cs startLine: 1153 @@ -1617,8 +1617,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MulWithVec3_Position_AndScale path: Math/Matrix/Mat4f.cs startLine: 1164 @@ -1657,8 +1657,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MulWithVec3_Position_AndScaleXY path: Math/Matrix/Mat4f.cs startLine: 1175 @@ -1697,8 +1697,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MulWithVec3_Position_WithOrigin path: Math/Matrix/Mat4f.cs startLine: 1190 @@ -1744,8 +1744,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MulWithVec3_Position_WithOrigin path: Math/Matrix/Mat4f.cs startLine: 1195 @@ -1784,8 +1784,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MulWithVec3_Position path: Math/Matrix/Mat4f.cs startLine: 1209 @@ -1826,8 +1826,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MulWithVec3 path: Math/Matrix/Mat4f.cs startLine: 1220 @@ -1864,8 +1864,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MulWithVec3 path: Math/Matrix/Mat4f.cs startLine: 1231 @@ -1906,8 +1906,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MulWithVec3_BlockFacing path: Math/Matrix/Mat4f.cs startLine: 1240 @@ -1942,8 +1942,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MulWithVec3_BlockFacing path: Math/Matrix/Mat4f.cs startLine: 1245 @@ -1978,8 +1978,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MulWithVec4 path: Math/Matrix/Mat4f.cs startLine: 1254 @@ -2014,8 +2014,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MulWithVec4 path: Math/Matrix/Mat4f.cs startLine: 1276 @@ -2055,8 +2055,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MulWithVec4 path: Math/Matrix/Mat4f.cs startLine: 1297 @@ -2096,8 +2096,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MulWithVec4 path: Math/Matrix/Mat4f.cs startLine: 1319 @@ -2137,8 +2137,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Mat4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExtractEulerAngles path: Math/Matrix/Mat4f.cs startLine: 1332 diff --git a/api/Vintagestory.API.MathTools.NatFloat.yml b/api/Vintagestory.API.MathTools.NatFloat.yml index b6b935c2..51cbc161 100644 --- a/api/Vintagestory.API.MathTools.NatFloat.yml +++ b/api/Vintagestory.API.MathTools.NatFloat.yml @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NatFloat path: Math/NatFloat.cs startLine: 60 @@ -81,8 +81,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Zero path: Math/NatFloat.cs startLine: 65 @@ -112,8 +112,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: One path: Math/NatFloat.cs startLine: 70 @@ -143,8 +143,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: offset path: Math/NatFloat.cs startLine: 72 @@ -170,8 +170,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: avg path: Math/NatFloat.cs startLine: 74 @@ -197,8 +197,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: var path: Math/NatFloat.cs startLine: 75 @@ -224,8 +224,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: dist path: Math/NatFloat.cs startLine: 76 @@ -251,8 +251,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/NatFloat.cs startLine: 83 @@ -287,8 +287,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: createInvexp path: Math/NatFloat.cs startLine: 91 @@ -323,8 +323,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: createStrongInvexp path: Math/NatFloat.cs startLine: 96 @@ -359,8 +359,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: createStrongerInvexp path: Math/NatFloat.cs startLine: 101 @@ -395,8 +395,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: createUniform path: Math/NatFloat.cs startLine: 106 @@ -431,8 +431,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: createGauss path: Math/NatFloat.cs startLine: 111 @@ -467,8 +467,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: createNarrowGauss path: Math/NatFloat.cs startLine: 116 @@ -503,8 +503,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: createInvGauss path: Math/NatFloat.cs startLine: 121 @@ -539,8 +539,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: createTri path: Math/NatFloat.cs startLine: 126 @@ -575,8 +575,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: createDirac path: Math/NatFloat.cs startLine: 131 @@ -611,8 +611,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: create path: Math/NatFloat.cs startLine: 136 @@ -649,8 +649,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: copyWithOffset path: Math/NatFloat.cs startLine: 142 @@ -683,8 +683,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: addOffset path: Math/NatFloat.cs startLine: 150 @@ -717,8 +717,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: setOffset path: Math/NatFloat.cs startLine: 156 @@ -751,8 +751,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: nextFloat path: Math/NatFloat.cs startLine: 163 @@ -779,8 +779,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: nextFloat path: Math/NatFloat.cs startLine: 168 @@ -813,8 +813,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: nextFloat path: Math/NatFloat.cs startLine: 173 @@ -849,8 +849,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: nextFloat path: Math/NatFloat.cs startLine: 287 @@ -885,8 +885,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClampToRange path: Math/NatFloat.cs startLine: 397 @@ -923,8 +923,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: createFromBytes path: Math/NatFloat.cs startLine: 413 @@ -954,8 +954,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Math/NatFloat.cs startLine: 420 @@ -982,8 +982,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Math/NatFloat.cs startLine: 425 @@ -1011,8 +1011,8 @@ items: source: remote: path: VintagestoryApi/Math/NatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Math/NatFloat.cs startLine: 433 diff --git a/api/Vintagestory.API.MathTools.NewNormalizedSimplexFractalNoise.ColumnNoise.yml b/api/Vintagestory.API.MathTools.NewNormalizedSimplexFractalNoise.ColumnNoise.yml index aa5c11ca..4e9dfe88 100644 --- a/api/Vintagestory.API.MathTools.NewNormalizedSimplexFractalNoise.ColumnNoise.yml +++ b/api/Vintagestory.API.MathTools.NewNormalizedSimplexFractalNoise.ColumnNoise.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NewNormalizedSimplexFractalNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColumnNoise path: Math/Noise/NewNormalizedSimplexFractalNoise.cs startLine: 124 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NewNormalizedSimplexFractalNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UncurvedBound path: Math/Noise/NewNormalizedSimplexFractalNoise.cs startLine: 129 @@ -82,8 +82,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NewNormalizedSimplexFractalNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BoundMin path: Math/Noise/NewNormalizedSimplexFractalNoise.cs startLine: 130 @@ -111,8 +111,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NewNormalizedSimplexFractalNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BoundMax path: Math/Noise/NewNormalizedSimplexFractalNoise.cs startLine: 131 @@ -140,8 +140,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NewNormalizedSimplexFractalNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Noise/NewNormalizedSimplexFractalNoise.cs startLine: 144 @@ -182,8 +182,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NewNormalizedSimplexFractalNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NoiseSign path: Math/Noise/NewNormalizedSimplexFractalNoise.cs startLine: 205 @@ -218,8 +218,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NewNormalizedSimplexFractalNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Noise path: Math/Noise/NewNormalizedSimplexFractalNoise.cs startLine: 249 diff --git a/api/Vintagestory.API.MathTools.NewNormalizedSimplexFractalNoise.yml b/api/Vintagestory.API.MathTools.NewNormalizedSimplexFractalNoise.yml index 8a7e0829..1b8611a8 100644 --- a/api/Vintagestory.API.MathTools.NewNormalizedSimplexFractalNoise.yml +++ b/api/Vintagestory.API.MathTools.NewNormalizedSimplexFractalNoise.yml @@ -26,8 +26,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NewNormalizedSimplexFractalNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NewNormalizedSimplexFractalNoise path: Math/Noise/NewNormalizedSimplexFractalNoise.cs startLine: 5 @@ -61,8 +61,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NewNormalizedSimplexFractalNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: scaledAmplitudes2D path: Math/Noise/NewNormalizedSimplexFractalNoise.cs startLine: 11 @@ -88,8 +88,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NewNormalizedSimplexFractalNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: scaledAmplitudes3D path: Math/Noise/NewNormalizedSimplexFractalNoise.cs startLine: 12 @@ -115,8 +115,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NewNormalizedSimplexFractalNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: inputAmplitudes path: Math/Noise/NewNormalizedSimplexFractalNoise.cs startLine: 14 @@ -142,8 +142,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NewNormalizedSimplexFractalNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: frequencies path: Math/Noise/NewNormalizedSimplexFractalNoise.cs startLine: 15 @@ -169,8 +169,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NewNormalizedSimplexFractalNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: octaveSeeds path: Math/Noise/NewNormalizedSimplexFractalNoise.cs startLine: 17 @@ -196,8 +196,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NewNormalizedSimplexFractalNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Noise/NewNormalizedSimplexFractalNoise.cs startLine: 20 @@ -232,8 +232,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NewNormalizedSimplexFractalNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromDefaultOctaves path: Math/Noise/NewNormalizedSimplexFractalNoise.cs startLine: 44 @@ -284,8 +284,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NewNormalizedSimplexFractalNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Noise path: Math/Noise/NewNormalizedSimplexFractalNoise.cs startLine: 82 @@ -326,8 +326,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NewNormalizedSimplexFractalNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NoiseValueCurve path: Math/Noise/NewNormalizedSimplexFractalNoise.cs startLine: 98 @@ -360,8 +360,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NewNormalizedSimplexFractalNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NoiseValueCurveInverse path: Math/Noise/NewNormalizedSimplexFractalNoise.cs startLine: 104 @@ -394,8 +394,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NewNormalizedSimplexFractalNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ForColumn path: Math/Noise/NewNormalizedSimplexFractalNoise.cs startLine: 119 diff --git a/api/Vintagestory.API.MathTools.NewSimplexNoiseLayer.yml b/api/Vintagestory.API.MathTools.NewSimplexNoiseLayer.yml index d794e202..7a5fcd3d 100644 --- a/api/Vintagestory.API.MathTools.NewSimplexNoiseLayer.yml +++ b/api/Vintagestory.API.MathTools.NewSimplexNoiseLayer.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NewSimplexNoiseLayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NewSimplexNoiseLayer path: Math/Noise/NewSimplexNoiseLayer.cs startLine: 4 @@ -54,8 +54,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NewSimplexNoiseLayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OldToNewFrequency path: Math/Noise/NewSimplexNoiseLayer.cs startLine: 6 @@ -81,8 +81,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NewSimplexNoiseLayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxYSlope_ImprovedXZ path: Math/Noise/NewSimplexNoiseLayer.cs startLine: 7 @@ -108,8 +108,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NewSimplexNoiseLayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Evaluate_ImprovedXZ path: Math/Noise/NewSimplexNoiseLayer.cs startLine: 24 @@ -148,8 +148,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NewSimplexNoiseLayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Evaluate_FallbackOrientation path: Math/Noise/NewSimplexNoiseLayer.cs startLine: 39 diff --git a/api/Vintagestory.API.MathTools.NormalRandom.yml b/api/Vintagestory.API.MathTools.NormalRandom.yml index 1208f414..e49b0cdb 100644 --- a/api/Vintagestory.API.MathTools.NormalRandom.yml +++ b/api/Vintagestory.API.MathTools.NormalRandom.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Math/LCGRandom.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NormalRandom path: Math/LCGRandom.cs startLine: 12 @@ -69,8 +69,8 @@ items: source: remote: path: VintagestoryApi/Math/LCGRandom.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/LCGRandom.cs startLine: 14 @@ -98,8 +98,8 @@ items: source: remote: path: VintagestoryApi/Math/LCGRandom.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/LCGRandom.cs startLine: 18 @@ -130,8 +130,8 @@ items: source: remote: path: VintagestoryApi/Math/LCGRandom.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NextInt path: Math/LCGRandom.cs startLine: 22 @@ -167,8 +167,8 @@ items: source: remote: path: VintagestoryApi/Math/LCGRandom.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NextInt path: Math/LCGRandom.cs startLine: 27 diff --git a/api/Vintagestory.API.MathTools.NormalizedSimplexNoise.ColumnNoise.yml b/api/Vintagestory.API.MathTools.NormalizedSimplexNoise.ColumnNoise.yml index 4b6262e0..6d955d58 100644 --- a/api/Vintagestory.API.MathTools.NormalizedSimplexNoise.ColumnNoise.yml +++ b/api/Vintagestory.API.MathTools.NormalizedSimplexNoise.ColumnNoise.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NormalizedSimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ColumnNoise path: Math/Noise/NormalizedSimplexNoise.cs startLine: 207 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NormalizedSimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UncurvedBound path: Math/Noise/NormalizedSimplexNoise.cs startLine: 211 @@ -82,8 +82,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NormalizedSimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BoundMin path: Math/Noise/NormalizedSimplexNoise.cs startLine: 212 @@ -111,8 +111,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NormalizedSimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BoundMax path: Math/Noise/NormalizedSimplexNoise.cs startLine: 213 @@ -140,8 +140,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NormalizedSimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Noise/NormalizedSimplexNoise.cs startLine: 221 @@ -182,8 +182,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NormalizedSimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NoiseSign path: Math/Noise/NormalizedSimplexNoise.cs startLine: 276 @@ -218,8 +218,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NormalizedSimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Noise path: Math/Noise/NormalizedSimplexNoise.cs startLine: 294 diff --git a/api/Vintagestory.API.MathTools.NormalizedSimplexNoise.yml b/api/Vintagestory.API.MathTools.NormalizedSimplexNoise.yml index 6bc0c68b..b3a725a1 100644 --- a/api/Vintagestory.API.MathTools.NormalizedSimplexNoise.yml +++ b/api/Vintagestory.API.MathTools.NormalizedSimplexNoise.yml @@ -30,8 +30,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NormalizedSimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NormalizedSimplexNoise path: Math/Noise/NormalizedSimplexNoise.cs startLine: 10 @@ -71,8 +71,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NormalizedSimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: scaledAmplitudes2D path: Math/Noise/NormalizedSimplexNoise.cs startLine: 14 @@ -98,8 +98,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NormalizedSimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: scaledAmplitudes3D path: Math/Noise/NormalizedSimplexNoise.cs startLine: 15 @@ -125,8 +125,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NormalizedSimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: inputAmplitudes path: Math/Noise/NormalizedSimplexNoise.cs startLine: 17 @@ -152,8 +152,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NormalizedSimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: frequencies path: Math/Noise/NormalizedSimplexNoise.cs startLine: 18 @@ -179,8 +179,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NormalizedSimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: octaves path: Math/Noise/NormalizedSimplexNoise.cs startLine: 20 @@ -206,8 +206,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NormalizedSimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Noise/NormalizedSimplexNoise.cs startLine: 23 @@ -242,8 +242,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NormalizedSimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromDefaultOctaves path: Math/Noise/NormalizedSimplexNoise.cs startLine: 47 @@ -294,8 +294,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NormalizedSimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Noise path: Math/Noise/NormalizedSimplexNoise.cs startLine: 96 @@ -335,8 +335,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NormalizedSimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Noise path: Math/Noise/NormalizedSimplexNoise.cs startLine: 108 @@ -373,8 +373,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NormalizedSimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Noise path: Math/Noise/NormalizedSimplexNoise.cs startLine: 129 @@ -417,8 +417,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NormalizedSimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Noise path: Math/Noise/NormalizedSimplexNoise.cs startLine: 151 @@ -464,8 +464,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NormalizedSimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Noise path: Math/Noise/NormalizedSimplexNoise.cs startLine: 163 @@ -506,8 +506,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NormalizedSimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NoiseValueCurve path: Math/Noise/NormalizedSimplexNoise.cs startLine: 181 @@ -540,8 +540,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NormalizedSimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NoiseValueCurveInverse path: Math/Noise/NormalizedSimplexNoise.cs startLine: 187 @@ -574,8 +574,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/NormalizedSimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ForColumn path: Math/Noise/NormalizedSimplexNoise.cs startLine: 202 diff --git a/api/Vintagestory.API.MathTools.PlotDelegate2D.yml b/api/Vintagestory.API.MathTools.PlotDelegate2D.yml index a4cfe87d..8492b2a1 100644 --- a/api/Vintagestory.API.MathTools.PlotDelegate2D.yml +++ b/api/Vintagestory.API.MathTools.PlotDelegate2D.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlotDelegate2D path: Math/GameMath.cs startLine: 1561 diff --git a/api/Vintagestory.API.MathTools.PlotDelegate3D.yml b/api/Vintagestory.API.MathTools.PlotDelegate3D.yml index 9b734cb5..a38145d3 100644 --- a/api/Vintagestory.API.MathTools.PlotDelegate3D.yml +++ b/api/Vintagestory.API.MathTools.PlotDelegate3D.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlotDelegate3D path: Math/GameMath.cs startLine: 1559 diff --git a/api/Vintagestory.API.MathTools.PlotDelegate3DBlockPos.yml b/api/Vintagestory.API.MathTools.PlotDelegate3DBlockPos.yml index 4b29ce71..2ff658a7 100644 --- a/api/Vintagestory.API.MathTools.PlotDelegate3DBlockPos.yml +++ b/api/Vintagestory.API.MathTools.PlotDelegate3DBlockPos.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Math/GameMath.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlotDelegate3DBlockPos path: Math/GameMath.cs startLine: 1560 diff --git a/api/Vintagestory.API.MathTools.Quaterniond.yml b/api/Vintagestory.API.MathTools.Quaterniond.yml index 7f5a5863..13823c34 100644 --- a/api/Vintagestory.API.MathTools.Quaterniond.yml +++ b/api/Vintagestory.API.MathTools.Quaterniond.yml @@ -41,8 +41,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Quaterniond path: Math/Matrix/Quaterniond.cs startLine: 28 @@ -76,8 +76,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Create path: Math/Matrix/Quaterniond.cs startLine: 35 @@ -105,8 +105,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotationTo path: Math/Matrix/Quaterniond.cs startLine: 56 @@ -144,8 +144,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetAxes path: Math/Matrix/Quaterniond.cs startLine: 110 @@ -185,8 +185,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CloneIt path: Math/Matrix/Quaterniond.cs startLine: 138 @@ -220,8 +220,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromValues path: Math/Matrix/Quaterniond.cs startLine: 153 @@ -261,8 +261,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Copy path: Math/Matrix/Quaterniond.cs startLine: 166 @@ -298,8 +298,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Matrix/Quaterniond.cs startLine: 182 @@ -341,8 +341,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Identity_ path: Math/Matrix/Quaterniond.cs startLine: 193 @@ -376,8 +376,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetAxisAngle path: Math/Matrix/Quaterniond.cs startLine: 211 @@ -415,8 +415,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Math/Matrix/Quaterniond.cs startLine: 232 @@ -454,8 +454,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Multiply path: Math/Matrix/Quaterniond.cs startLine: 245 @@ -493,8 +493,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Scale path: Math/Matrix/Quaterniond.cs startLine: 267 @@ -532,8 +532,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotateX path: Math/Matrix/Quaterniond.cs startLine: 280 @@ -571,8 +571,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotateY path: Math/Matrix/Quaterniond.cs startLine: 302 @@ -610,8 +610,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotateZ path: Math/Matrix/Quaterniond.cs startLine: 324 @@ -649,8 +649,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CalculateW path: Math/Matrix/Quaterniond.cs startLine: 347 @@ -686,8 +686,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dot path: Math/Matrix/Quaterniond.cs startLine: 367 @@ -723,8 +723,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToEulerAngles path: Math/Matrix/Quaterniond.cs startLine: 373 @@ -757,8 +757,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Lerp path: Math/Matrix/Quaterniond.cs startLine: 407 @@ -798,8 +798,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Slerp path: Math/Matrix/Quaterniond.cs startLine: 422 @@ -839,8 +839,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Invert path: Math/Matrix/Quaterniond.cs startLine: 477 @@ -876,8 +876,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Conjugate path: Math/Matrix/Quaterniond.cs startLine: 501 @@ -913,8 +913,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Length_ path: Math/Matrix/Quaterniond.cs startLine: 518 @@ -948,8 +948,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SquaredLength path: Math/Matrix/Quaterniond.cs startLine: 530 @@ -983,8 +983,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Normalize path: Math/Matrix/Quaterniond.cs startLine: 544 @@ -1020,8 +1020,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromMat3 path: Math/Matrix/Quaterniond.cs startLine: 560 diff --git a/api/Vintagestory.API.MathTools.Quaternionf.yml b/api/Vintagestory.API.MathTools.Quaternionf.yml index b7e97fd1..818103f5 100644 --- a/api/Vintagestory.API.MathTools.Quaternionf.yml +++ b/api/Vintagestory.API.MathTools.Quaternionf.yml @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Quaternionf path: Math/Matrix/Quaternionf.cs startLine: 28 @@ -79,8 +79,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Create path: Math/Matrix/Quaternionf.cs startLine: 35 @@ -108,8 +108,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotationTo path: Math/Matrix/Quaternionf.cs startLine: 56 @@ -147,8 +147,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetAxes path: Math/Matrix/Quaternionf.cs startLine: 110 @@ -188,8 +188,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CloneIt path: Math/Matrix/Quaternionf.cs startLine: 138 @@ -223,8 +223,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromValues path: Math/Matrix/Quaternionf.cs startLine: 153 @@ -264,8 +264,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Copy path: Math/Matrix/Quaternionf.cs startLine: 166 @@ -301,8 +301,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Matrix/Quaternionf.cs startLine: 182 @@ -344,8 +344,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Identity_ path: Math/Matrix/Quaternionf.cs startLine: 193 @@ -379,8 +379,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetAxisAngle path: Math/Matrix/Quaternionf.cs startLine: 211 @@ -418,8 +418,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Math/Matrix/Quaternionf.cs startLine: 232 @@ -457,8 +457,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Multiply path: Math/Matrix/Quaternionf.cs startLine: 245 @@ -496,8 +496,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mul path: Math/Matrix/Quaternionf.cs startLine: 261 @@ -535,8 +535,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Scale path: Math/Matrix/Quaternionf.cs startLine: 276 @@ -574,8 +574,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotateX path: Math/Matrix/Quaternionf.cs startLine: 289 @@ -613,8 +613,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotateY path: Math/Matrix/Quaternionf.cs startLine: 311 @@ -652,8 +652,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RotateZ path: Math/Matrix/Quaternionf.cs startLine: 333 @@ -691,8 +691,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CalculateW path: Math/Matrix/Quaternionf.cs startLine: 356 @@ -728,8 +728,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dot path: Math/Matrix/Quaternionf.cs startLine: 376 @@ -765,8 +765,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToEulerAngles path: Math/Matrix/Quaternionf.cs startLine: 382 @@ -799,8 +799,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Lerp path: Math/Matrix/Quaternionf.cs startLine: 416 @@ -840,8 +840,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Slerp path: Math/Matrix/Quaternionf.cs startLine: 431 @@ -881,8 +881,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Invert path: Math/Matrix/Quaternionf.cs startLine: 486 @@ -918,8 +918,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Conjugate path: Math/Matrix/Quaternionf.cs startLine: 510 @@ -955,8 +955,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Length_ path: Math/Matrix/Quaternionf.cs startLine: 527 @@ -990,8 +990,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Len path: Math/Matrix/Quaternionf.cs startLine: 536 @@ -1025,8 +1025,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SquaredLength path: Math/Matrix/Quaternionf.cs startLine: 548 @@ -1060,8 +1060,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SqrLen path: Math/Matrix/Quaternionf.cs startLine: 557 @@ -1095,8 +1095,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Normalize path: Math/Matrix/Quaternionf.cs startLine: 570 @@ -1132,8 +1132,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromMat3 path: Math/Matrix/Quaternionf.cs startLine: 586 diff --git a/api/Vintagestory.API.MathTools.Ray.yml b/api/Vintagestory.API.MathTools.Ray.yml index d519e2fa..e2a9a067 100644 --- a/api/Vintagestory.API.MathTools.Ray.yml +++ b/api/Vintagestory.API.MathTools.Ray.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Ray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Ray path: Math/Vector/Ray.cs startLine: 2 @@ -56,8 +56,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Ray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: origin path: Math/Vector/Ray.cs startLine: 4 @@ -83,8 +83,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Ray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: dir path: Math/Vector/Ray.cs startLine: 5 @@ -110,8 +110,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Ray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Length path: Math/Vector/Ray.cs startLine: 7 @@ -139,8 +139,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Ray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Ray.cs startLine: 12 @@ -168,8 +168,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Ray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Ray.cs startLine: 18 @@ -202,8 +202,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Ray.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LimitToWalls path: Math/Vector/Ray.cs startLine: 24 diff --git a/api/Vintagestory.API.MathTools.Rectanglei.yml b/api/Vintagestory.API.MathTools.Rectanglei.yml index d426f1a2..a5383636 100644 --- a/api/Vintagestory.API.MathTools.Rectanglei.yml +++ b/api/Vintagestory.API.MathTools.Rectanglei.yml @@ -30,8 +30,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglei.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rectanglei path: Math/Rectangle/Rectanglei.cs startLine: 30 @@ -62,8 +62,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglei.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X1 path: Math/Rectangle/Rectanglei.cs startLine: 40 @@ -93,8 +93,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglei.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y1 path: Math/Rectangle/Rectanglei.cs startLine: 45 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglei.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X2 path: Math/Rectangle/Rectanglei.cs startLine: 50 @@ -155,8 +155,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglei.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y2 path: Math/Rectangle/Rectanglei.cs startLine: 58 @@ -186,8 +186,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglei.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Bottom path: Math/Rectangle/Rectanglei.cs startLine: 63 @@ -214,8 +214,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglei.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Rectangle/Rectanglei.cs startLine: 68 @@ -252,8 +252,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglei.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GrowBy path: Math/Rectangle/Rectanglei.cs startLine: 76 @@ -286,8 +286,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglei.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Math/Rectangle/Rectanglei.cs startLine: 81 @@ -326,8 +326,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglei.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PointInside path: Math/Rectangle/Rectanglei.cs startLine: 87 @@ -362,8 +362,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglei.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PointInside path: Math/Rectangle/Rectanglei.cs startLine: 97 @@ -393,8 +393,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglei.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Intersects path: Math/Rectangle/Rectanglei.cs startLine: 110 @@ -426,8 +426,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglei.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IntersectsOrTouches path: Math/Rectangle/Rectanglei.cs startLine: 118 @@ -459,8 +459,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglei.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IntersectsOrTouches path: Math/Rectangle/Rectanglei.cs startLine: 127 @@ -499,8 +499,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglei.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Contains path: Math/Rectangle/Rectanglei.cs startLine: 139 @@ -532,8 +532,8 @@ items: source: remote: path: VintagestoryApi/Math/Rectangle/Rectanglei.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Contains path: Math/Rectangle/Rectanglei.cs startLine: 147 diff --git a/api/Vintagestory.API.MathTools.ShapeUtil.yml b/api/Vintagestory.API.MathTools.ShapeUtil.yml index 4f95c712..7a168e37 100644 --- a/api/Vintagestory.API.MathTools.ShapeUtil.yml +++ b/api/Vintagestory.API.MathTools.ShapeUtil.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Math/ShapeUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShapeUtil path: Math/ShapeUtil.cs startLine: 6 @@ -58,8 +58,8 @@ items: source: remote: path: VintagestoryApi/Math/ShapeUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: maxShells path: Math/ShapeUtil.cs startLine: 10 @@ -85,8 +85,8 @@ items: source: remote: path: VintagestoryApi/Math/ShapeUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCachedCubicShellNormalizedVectors path: Math/ShapeUtil.cs startLine: 45 @@ -119,8 +119,8 @@ items: source: remote: path: VintagestoryApi/Math/ShapeUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GenCubicShellVectors path: Math/ShapeUtil.cs startLine: 50 @@ -153,8 +153,8 @@ items: source: remote: path: VintagestoryApi/Math/ShapeUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSquarePointsSortedByMDist path: Math/ShapeUtil.cs startLine: 83 @@ -191,8 +191,8 @@ items: source: remote: path: VintagestoryApi/Math/ShapeUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHollowSquarePoints path: Math/ShapeUtil.cs startLine: 108 @@ -229,8 +229,8 @@ items: source: remote: path: VintagestoryApi/Math/ShapeUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetOctagonPoints path: Math/ShapeUtil.cs startLine: 142 @@ -267,8 +267,8 @@ items: source: remote: path: VintagestoryApi/Math/ShapeUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadOctagonIndices path: Math/ShapeUtil.cs startLine: 183 @@ -307,8 +307,8 @@ items: source: remote: path: VintagestoryApi/Math/ShapeUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetPointsOfCircle path: Math/ShapeUtil.cs startLine: 220 diff --git a/api/Vintagestory.API.MathTools.SimplexNoise.yml b/api/Vintagestory.API.MathTools.SimplexNoise.yml index 8cd02933..2a6053d6 100644 --- a/api/Vintagestory.API.MathTools.SimplexNoise.yml +++ b/api/Vintagestory.API.MathTools.SimplexNoise.yml @@ -27,8 +27,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/SimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SimplexNoise path: Math/Noise/SimplexNoise.cs startLine: 7 @@ -64,8 +64,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/SimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: octaves path: Math/Noise/SimplexNoise.cs startLine: 9 @@ -91,8 +91,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/SimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: amplitudes path: Math/Noise/SimplexNoise.cs startLine: 11 @@ -118,8 +118,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/SimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: frequencies path: Math/Noise/SimplexNoise.cs startLine: 12 @@ -145,8 +145,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/SimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Noise/SimplexNoise.cs startLine: 15 @@ -181,8 +181,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/SimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromDefaultOctaves path: Math/Noise/SimplexNoise.cs startLine: 40 @@ -233,8 +233,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/SimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Noise path: Math/Noise/SimplexNoise.cs startLine: 55 @@ -269,8 +269,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/SimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NoiseFairWarpVector path: Math/Noise/SimplexNoise.cs startLine: 69 @@ -311,8 +311,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/SimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Noise path: Math/Noise/SimplexNoise.cs startLine: 83 @@ -349,8 +349,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/SimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NoiseWithThreshold path: Math/Noise/SimplexNoise.cs startLine: 98 @@ -387,8 +387,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/SimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Noise path: Math/Noise/SimplexNoise.cs startLine: 114 @@ -425,8 +425,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/SimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AbsNoise path: Math/Noise/SimplexNoise.cs startLine: 127 @@ -463,8 +463,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/SimplexNoise.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Math/Noise/SimplexNoise.cs startLine: 142 diff --git a/api/Vintagestory.API.MathTools.SimplexNoiseOctave.yml b/api/Vintagestory.API.MathTools.SimplexNoiseOctave.yml index 93ab89f4..3db35377 100644 --- a/api/Vintagestory.API.MathTools.SimplexNoiseOctave.yml +++ b/api/Vintagestory.API.MathTools.SimplexNoiseOctave.yml @@ -25,8 +25,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/SimplexOctave.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SimplexNoiseOctave path: Math/Noise/SimplexOctave.cs startLine: 11 @@ -67,8 +67,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/SimplexOctave.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MAX_VALUE_2D path: Math/Noise/SimplexOctave.cs startLine: 13 @@ -94,8 +94,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/SimplexOctave.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MAX_VALUE_3D path: Math/Noise/SimplexOctave.cs startLine: 14 @@ -121,8 +121,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/SimplexOctave.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MAX_VALUE_4D path: Math/Noise/SimplexOctave.cs startLine: 15 @@ -148,8 +148,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/SimplexOctave.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MAX_VALUE_2D_WARP path: Math/Noise/SimplexOctave.cs startLine: 16 @@ -175,8 +175,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/SimplexOctave.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Noise/SimplexOctave.cs startLine: 268 @@ -204,8 +204,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/SimplexOctave.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Noise/SimplexOctave.cs startLine: 273 @@ -236,8 +236,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/SimplexOctave.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Evaluate path: Math/Noise/SimplexOctave.cs startLine: 303 @@ -272,8 +272,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/SimplexOctave.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EvaluateFairWarpVector path: Math/Noise/SimplexOctave.cs startLine: 351 @@ -314,8 +314,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/SimplexOctave.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Evaluate path: Math/Noise/SimplexOctave.cs startLine: 417 @@ -352,8 +352,8 @@ items: source: remote: path: VintagestoryApi/Math/Noise/SimplexOctave.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Evaluate path: Math/Noise/SimplexOctave.cs startLine: 475 diff --git a/api/Vintagestory.API.MathTools.Size2d.yml b/api/Vintagestory.API.MathTools.Size2d.yml index 298f72fa..6d791c76 100644 --- a/api/Vintagestory.API.MathTools.Size2d.yml +++ b/api/Vintagestory.API.MathTools.Size2d.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size2.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Size2d path: Math/Size/Size2.cs startLine: 32 @@ -57,8 +57,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size2.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Width path: Math/Size/Size2.cs startLine: 34 @@ -84,8 +84,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size2.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Height path: Math/Size/Size2.cs startLine: 35 @@ -111,8 +111,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size2.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Size/Size2.cs startLine: 38 @@ -140,8 +140,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size2.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Size/Size2.cs startLine: 43 @@ -174,8 +174,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size2.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Math/Size/Size2.cs startLine: 49 diff --git a/api/Vintagestory.API.MathTools.Size2f.yml b/api/Vintagestory.API.MathTools.Size2f.yml index 8f286668..fd30c262 100644 --- a/api/Vintagestory.API.MathTools.Size2f.yml +++ b/api/Vintagestory.API.MathTools.Size2f.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size2.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Size2f path: Math/Size/Size2.cs startLine: 6 @@ -57,8 +57,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size2.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Width path: Math/Size/Size2.cs startLine: 8 @@ -84,8 +84,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size2.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Height path: Math/Size/Size2.cs startLine: 9 @@ -111,8 +111,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size2.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Size/Size2.cs startLine: 12 @@ -140,8 +140,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size2.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Size/Size2.cs startLine: 17 @@ -174,8 +174,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size2.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Math/Size/Size2.cs startLine: 23 diff --git a/api/Vintagestory.API.MathTools.Size2i.yml b/api/Vintagestory.API.MathTools.Size2i.yml index 4862bfc4..81a071f6 100644 --- a/api/Vintagestory.API.MathTools.Size2i.yml +++ b/api/Vintagestory.API.MathTools.Size2i.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size2.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Size2i path: Math/Size/Size2.cs startLine: 60 @@ -57,8 +57,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size2.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Width path: Math/Size/Size2.cs startLine: 62 @@ -84,8 +84,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size2.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Height path: Math/Size/Size2.cs startLine: 63 @@ -111,8 +111,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size2.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Size/Size2.cs startLine: 66 @@ -140,8 +140,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size2.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Size/Size2.cs startLine: 71 @@ -174,8 +174,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size2.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Math/Size/Size2.cs startLine: 77 diff --git a/api/Vintagestory.API.MathTools.Size3d.yml b/api/Vintagestory.API.MathTools.Size3d.yml index 2c9a1207..b75d0de3 100644 --- a/api/Vintagestory.API.MathTools.Size3d.yml +++ b/api/Vintagestory.API.MathTools.Size3d.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Size3d path: Math/Size/Size3.cs startLine: 39 @@ -59,8 +59,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Width path: Math/Size/Size3.cs startLine: 41 @@ -86,8 +86,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Height path: Math/Size/Size3.cs startLine: 42 @@ -113,8 +113,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Length path: Math/Size/Size3.cs startLine: 43 @@ -140,8 +140,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Size/Size3.cs startLine: 46 @@ -169,8 +169,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Size/Size3.cs startLine: 51 @@ -205,8 +205,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Math/Size/Size3.cs startLine: 58 @@ -233,8 +233,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanContain path: Math/Size/Size3.cs startLine: 63 diff --git a/api/Vintagestory.API.MathTools.Size3f.yml b/api/Vintagestory.API.MathTools.Size3f.yml index cad4e017..b412f117 100644 --- a/api/Vintagestory.API.MathTools.Size3f.yml +++ b/api/Vintagestory.API.MathTools.Size3f.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Size3f path: Math/Size/Size3.cs startLine: 6 @@ -59,8 +59,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Width path: Math/Size/Size3.cs startLine: 8 @@ -86,8 +86,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Height path: Math/Size/Size3.cs startLine: 9 @@ -113,8 +113,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Length path: Math/Size/Size3.cs startLine: 10 @@ -140,8 +140,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Size/Size3.cs startLine: 13 @@ -169,8 +169,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Size/Size3.cs startLine: 18 @@ -205,8 +205,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Math/Size/Size3.cs startLine: 25 @@ -233,8 +233,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanContain path: Math/Size/Size3.cs startLine: 30 diff --git a/api/Vintagestory.API.MathTools.Size3i.yml b/api/Vintagestory.API.MathTools.Size3i.yml index b496262d..48bf3942 100644 --- a/api/Vintagestory.API.MathTools.Size3i.yml +++ b/api/Vintagestory.API.MathTools.Size3i.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Size3i path: Math/Size/Size3.cs startLine: 74 @@ -59,8 +59,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Width path: Math/Size/Size3.cs startLine: 76 @@ -86,8 +86,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Height path: Math/Size/Size3.cs startLine: 77 @@ -113,8 +113,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Length path: Math/Size/Size3.cs startLine: 78 @@ -140,8 +140,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Size/Size3.cs startLine: 81 @@ -169,8 +169,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Size/Size3.cs startLine: 86 @@ -205,8 +205,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Math/Size/Size3.cs startLine: 93 @@ -233,8 +233,8 @@ items: source: remote: path: VintagestoryApi/Math/Size/Size3.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanContain path: Math/Size/Size3.cs startLine: 98 diff --git a/api/Vintagestory.API.MathTools.SkColorFix.yml b/api/Vintagestory.API.MathTools.SkColorFix.yml index 4ed2661b..ea455798 100644 --- a/api/Vintagestory.API.MathTools.SkColorFix.yml +++ b/api/Vintagestory.API.MathTools.SkColorFix.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SkColorFix path: Math/ColorUtil.cs startLine: 5 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToInt path: Math/ColorUtil.cs startLine: 7 diff --git a/api/Vintagestory.API.MathTools.Sphere.yml b/api/Vintagestory.API.MathTools.Sphere.yml index 3c2f3ae4..5fb110a6 100644 --- a/api/Vintagestory.API.MathTools.Sphere.yml +++ b/api/Vintagestory.API.MathTools.Sphere.yml @@ -24,8 +24,8 @@ items: source: remote: path: VintagestoryApi/Math/Sphere.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sphere path: Math/Sphere.cs startLine: 5 @@ -58,8 +58,8 @@ items: source: remote: path: VintagestoryApi/Math/Sphere.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: x path: Math/Sphere.cs startLine: 7 @@ -85,8 +85,8 @@ items: source: remote: path: VintagestoryApi/Math/Sphere.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: y path: Math/Sphere.cs startLine: 8 @@ -112,8 +112,8 @@ items: source: remote: path: VintagestoryApi/Math/Sphere.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: z path: Math/Sphere.cs startLine: 9 @@ -139,8 +139,8 @@ items: source: remote: path: VintagestoryApi/Math/Sphere.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: radius path: Math/Sphere.cs startLine: 10 @@ -166,8 +166,8 @@ items: source: remote: path: VintagestoryApi/Math/Sphere.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: radiusY path: Math/Sphere.cs startLine: 11 @@ -193,8 +193,8 @@ items: source: remote: path: VintagestoryApi/Math/Sphere.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: radiusZ path: Math/Sphere.cs startLine: 12 @@ -220,8 +220,8 @@ items: source: remote: path: VintagestoryApi/Math/Sphere.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: sqrt3half path: Math/Sphere.cs startLine: 14 @@ -247,8 +247,8 @@ items: source: remote: path: VintagestoryApi/Math/Sphere.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Sphere.cs startLine: 16 @@ -289,8 +289,8 @@ items: source: remote: path: VintagestoryApi/Math/Sphere.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BoundingSphereForCube path: Math/Sphere.cs startLine: 26 diff --git a/api/Vintagestory.API.MathTools.TransformFunction.yml b/api/Vintagestory.API.MathTools.TransformFunction.yml index 0992ce11..f4b71b3e 100644 --- a/api/Vintagestory.API.MathTools.TransformFunction.yml +++ b/api/Vintagestory.API.MathTools.TransformFunction.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Math/EvolvingNatFloat.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TransformFunction path: Math/EvolvingNatFloat.cs startLine: 6 diff --git a/api/Vintagestory.API.MathTools.VSColor.yml b/api/Vintagestory.API.MathTools.VSColor.yml index 3b312d10..59895ce5 100644 --- a/api/Vintagestory.API.MathTools.VSColor.yml +++ b/api/Vintagestory.API.MathTools.VSColor.yml @@ -26,8 +26,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorBlend.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: VSColor path: Math/ColorBlend.cs startLine: 6 @@ -58,8 +58,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorBlend.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AsInt path: Math/ColorBlend.cs startLine: 10 @@ -85,8 +85,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorBlend.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: R path: Math/ColorBlend.cs startLine: 12 @@ -112,8 +112,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorBlend.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: G path: Math/ColorBlend.cs startLine: 14 @@ -139,8 +139,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorBlend.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: B path: Math/ColorBlend.cs startLine: 16 @@ -166,8 +166,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorBlend.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: A path: Math/ColorBlend.cs startLine: 18 @@ -193,8 +193,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorBlend.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rn path: Math/ColorBlend.cs startLine: 21 @@ -222,8 +222,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorBlend.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Gn path: Math/ColorBlend.cs startLine: 26 @@ -251,8 +251,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorBlend.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Bn path: Math/ColorBlend.cs startLine: 31 @@ -280,8 +280,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorBlend.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: An path: Math/ColorBlend.cs startLine: 36 @@ -309,8 +309,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorBlend.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/ColorBlend.cs startLine: 43 @@ -341,8 +341,8 @@ items: source: remote: path: VintagestoryApi/Math/ColorBlend.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/ColorBlend.cs startLine: 48 diff --git a/api/Vintagestory.API.MathTools.Vec2d.yml b/api/Vintagestory.API.MathTools.Vec2d.yml index 9efbb167..88543782 100644 --- a/api/Vintagestory.API.MathTools.Vec2d.yml +++ b/api/Vintagestory.API.MathTools.Vec2d.yml @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Vec2d path: Math/Vector/Vec2d.cs startLine: 7 @@ -78,8 +78,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X path: Math/Vector/Vec2d.cs startLine: 9 @@ -105,8 +105,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y path: Math/Vector/Vec2d.cs startLine: 10 @@ -132,8 +132,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec2d.cs startLine: 13 @@ -161,8 +161,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec2d.cs startLine: 18 @@ -195,8 +195,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Vector/Vec2d.cs startLine: 24 @@ -231,8 +231,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dot path: Math/Vector/Vec2d.cs startLine: 32 @@ -262,8 +262,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dot path: Math/Vector/Vec2d.cs startLine: 37 @@ -298,8 +298,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Length path: Math/Vector/Vec2d.cs startLine: 43 @@ -326,8 +326,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LengthSq path: Math/Vector/Vec2d.cs startLine: 48 @@ -354,8 +354,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Normalize path: Math/Vector/Vec2d.cs startLine: 53 @@ -382,8 +382,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DistanceTo path: Math/Vector/Vec2d.cs startLine: 65 @@ -413,8 +413,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DistanceTo path: Math/Vector/Vec2d.cs startLine: 70 @@ -449,8 +449,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Math/Vector/Vec2d.cs startLine: 78 @@ -488,8 +488,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHashCode path: Math/Vector/Vec2d.cs startLine: 85 @@ -520,8 +520,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Subtraction path: Math/Vector/Vec2d.cs startLine: 92 @@ -556,8 +556,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Addition path: Math/Vector/Vec2d.cs startLine: 97 @@ -592,8 +592,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Addition path: Math/Vector/Vec2d.cs startLine: 102 @@ -628,8 +628,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Subtraction path: Math/Vector/Vec2d.cs startLine: 107 @@ -664,8 +664,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Subtraction path: Math/Vector/Vec2d.cs startLine: 113 @@ -700,8 +700,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Addition path: Math/Vector/Vec2d.cs startLine: 118 @@ -736,8 +736,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Multiply path: Math/Vector/Vec2d.cs startLine: 124 @@ -772,8 +772,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Multiply path: Math/Vector/Vec2d.cs startLine: 129 @@ -808,8 +808,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Multiply path: Math/Vector/Vec2d.cs startLine: 134 @@ -844,8 +844,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Multiply path: Math/Vector/Vec2d.cs startLine: 140 @@ -880,8 +880,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Multiply path: Math/Vector/Vec2d.cs startLine: 146 @@ -916,8 +916,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Division path: Math/Vector/Vec2d.cs startLine: 151 @@ -952,8 +952,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Equality path: Math/Vector/Vec2d.cs startLine: 157 @@ -988,8 +988,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Inequality path: Math/Vector/Vec2d.cs startLine: 167 diff --git a/api/Vintagestory.API.MathTools.Vec2f.yml b/api/Vintagestory.API.MathTools.Vec2f.yml index dd15c0dd..ca650cc3 100644 --- a/api/Vintagestory.API.MathTools.Vec2f.yml +++ b/api/Vintagestory.API.MathTools.Vec2f.yml @@ -42,8 +42,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Vec2f path: Math/Vector/Vec2f.cs startLine: 7 @@ -76,8 +76,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Zero path: Math/Vector/Vec2f.cs startLine: 9 @@ -103,8 +103,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X path: Math/Vector/Vec2f.cs startLine: 12 @@ -130,8 +130,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y path: Math/Vector/Vec2f.cs startLine: 13 @@ -157,8 +157,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec2f.cs startLine: 15 @@ -186,8 +186,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec2f.cs startLine: 20 @@ -220,8 +220,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec2f.cs startLine: 26 @@ -252,8 +252,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Math/Vector/Vec2f.cs startLine: 35 @@ -284,8 +284,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Length path: Math/Vector/Vec2f.cs startLine: 40 @@ -312,8 +312,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DistanceTo path: Math/Vector/Vec2f.cs startLine: 45 @@ -348,8 +348,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Distance path: Math/Vector/Vec2f.cs startLine: 53 @@ -388,8 +388,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Math/Vector/Vec2f.cs startLine: 61 @@ -416,8 +416,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Math/Vector/Vec2f.cs startLine: 66 @@ -455,8 +455,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHashCode path: Math/Vector/Vec2f.cs startLine: 73 @@ -487,8 +487,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Subtraction path: Math/Vector/Vec2f.cs startLine: 79 @@ -523,8 +523,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Addition path: Math/Vector/Vec2f.cs startLine: 84 @@ -559,8 +559,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Subtraction path: Math/Vector/Vec2f.cs startLine: 90 @@ -595,8 +595,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Subtraction path: Math/Vector/Vec2f.cs startLine: 95 @@ -631,8 +631,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Addition path: Math/Vector/Vec2f.cs startLine: 100 @@ -667,8 +667,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Multiply path: Math/Vector/Vec2f.cs startLine: 106 @@ -703,8 +703,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Multiply path: Math/Vector/Vec2f.cs startLine: 111 @@ -739,8 +739,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Multiply path: Math/Vector/Vec2f.cs startLine: 116 @@ -775,8 +775,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Multiply path: Math/Vector/Vec2f.cs startLine: 121 @@ -811,8 +811,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Multiply path: Math/Vector/Vec2f.cs startLine: 127 @@ -847,8 +847,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Division path: Math/Vector/Vec2f.cs startLine: 132 @@ -883,8 +883,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Addition path: Math/Vector/Vec2f.cs startLine: 138 @@ -919,8 +919,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Equality path: Math/Vector/Vec2f.cs startLine: 143 @@ -955,8 +955,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Inequality path: Math/Vector/Vec2f.cs startLine: 153 diff --git a/api/Vintagestory.API.MathTools.Vec2i.yml b/api/Vintagestory.API.MathTools.Vec2i.yml index 5a190ee3..1f674248 100644 --- a/api/Vintagestory.API.MathTools.Vec2i.yml +++ b/api/Vintagestory.API.MathTools.Vec2i.yml @@ -47,8 +47,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Vec2i path: Math/Vector/Vec2i.cs startLine: 8 @@ -93,8 +93,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X path: Math/Vector/Vec2i.cs startLine: 12 @@ -132,8 +132,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y path: Math/Vector/Vec2i.cs startLine: 14 @@ -171,8 +171,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Zero path: Math/Vector/Vec2i.cs startLine: 16 @@ -200,8 +200,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec2i.cs startLine: 18 @@ -229,8 +229,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec2i.cs startLine: 23 @@ -263,8 +263,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec2i.cs startLine: 29 @@ -295,8 +295,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Math/Vector/Vec2i.cs startLine: 35 @@ -332,8 +332,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Math/Vector/Vec2i.cs startLine: 40 @@ -371,8 +371,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHashCode path: Math/Vector/Vec2i.cs startLine: 55 @@ -403,8 +403,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Math/Vector/Vec2i.cs startLine: 63 @@ -437,8 +437,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ManhattenDistance path: Math/Vector/Vec2i.cs startLine: 69 @@ -468,8 +468,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ManhattenDistance path: Math/Vector/Vec2i.cs startLine: 74 @@ -504,8 +504,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Vector/Vec2i.cs startLine: 79 @@ -540,8 +540,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Vector/Vec2i.cs startLine: 86 @@ -571,8 +571,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Copy path: Math/Vector/Vec2i.cs startLine: 93 @@ -599,8 +599,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Math/Vector/Vec2i.cs startLine: 98 @@ -631,8 +631,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Math/Vector/Vec2i.cs startLine: 103 @@ -667,8 +667,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToChunkIndex path: Math/Vector/Vec2i.cs startLine: 115 @@ -698,8 +698,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Subtraction path: Math/Vector/Vec2i.cs startLine: 122 @@ -734,8 +734,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Addition path: Math/Vector/Vec2i.cs startLine: 127 @@ -770,8 +770,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Subtraction path: Math/Vector/Vec2i.cs startLine: 132 @@ -806,8 +806,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Subtraction path: Math/Vector/Vec2i.cs startLine: 138 @@ -842,8 +842,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Addition path: Math/Vector/Vec2i.cs startLine: 143 @@ -878,8 +878,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Multiply path: Math/Vector/Vec2i.cs startLine: 149 @@ -914,8 +914,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Multiply path: Math/Vector/Vec2i.cs startLine: 154 @@ -950,8 +950,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Multiply path: Math/Vector/Vec2i.cs startLine: 159 @@ -986,8 +986,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Multiply path: Math/Vector/Vec2i.cs startLine: 165 @@ -1022,8 +1022,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Multiply path: Math/Vector/Vec2i.cs startLine: 171 @@ -1058,8 +1058,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Division path: Math/Vector/Vec2i.cs startLine: 176 @@ -1094,8 +1094,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Division path: Math/Vector/Vec2i.cs startLine: 181 @@ -1130,8 +1130,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Equality path: Math/Vector/Vec2i.cs startLine: 187 @@ -1166,8 +1166,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec2i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Inequality path: Math/Vector/Vec2i.cs startLine: 197 diff --git a/api/Vintagestory.API.MathTools.Vec3Utilsd.yml b/api/Vintagestory.API.MathTools.Vec3Utilsd.yml index ac609d37..40d6437e 100644 --- a/api/Vintagestory.API.MathTools.Vec3Utilsd.yml +++ b/api/Vintagestory.API.MathTools.Vec3Utilsd.yml @@ -41,8 +41,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Vec3Utilsd path: Math/Matrix/Quaterniond.cs startLine: 1025 @@ -78,8 +78,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Create path: Math/Matrix/Quaterniond.cs startLine: 1029 @@ -107,8 +107,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CloneIt path: Math/Matrix/Quaterniond.cs startLine: 1043 @@ -145,8 +145,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromValues path: Math/Matrix/Quaterniond.cs startLine: 1059 @@ -189,8 +189,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Copy path: Math/Matrix/Quaterniond.cs startLine: 1074 @@ -230,8 +230,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Matrix/Quaterniond.cs startLine: 1090 @@ -277,8 +277,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Math/Matrix/Quaterniond.cs startLine: 1105 @@ -321,8 +321,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Substract path: Math/Matrix/Quaterniond.cs startLine: 1120 @@ -365,8 +365,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Multiply path: Math/Matrix/Quaterniond.cs startLine: 1136 @@ -409,8 +409,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Divide path: Math/Matrix/Quaterniond.cs startLine: 1152 @@ -453,8 +453,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Min path: Math/Matrix/Quaterniond.cs startLine: 1168 @@ -497,8 +497,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Max path: Math/Matrix/Quaterniond.cs startLine: 1183 @@ -541,8 +541,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Scale path: Math/Matrix/Quaterniond.cs startLine: 1198 @@ -585,8 +585,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ScaleAndAdd path: Math/Matrix/Quaterniond.cs startLine: 1214 @@ -632,8 +632,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Distance path: Math/Matrix/Quaterniond.cs startLine: 1228 @@ -673,8 +673,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SquaredDistance path: Math/Matrix/Quaterniond.cs startLine: 1243 @@ -714,8 +714,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Length_ path: Math/Matrix/Quaterniond.cs startLine: 1257 @@ -752,8 +752,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SquaredLength path: Math/Matrix/Quaterniond.cs startLine: 1271 @@ -790,8 +790,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SqrLen path: Math/Matrix/Quaterniond.cs startLine: 1284 @@ -828,8 +828,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Negate path: Math/Matrix/Quaterniond.cs startLine: 1295 @@ -869,8 +869,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Normalize path: Math/Matrix/Quaterniond.cs startLine: 1309 @@ -910,8 +910,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dot path: Math/Matrix/Quaterniond.cs startLine: 1332 @@ -951,8 +951,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Cross path: Math/Matrix/Quaterniond.cs startLine: 1344 @@ -995,8 +995,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Lerp path: Math/Matrix/Quaterniond.cs startLine: 1368 @@ -1042,8 +1042,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TransformMat4 path: Math/Matrix/Quaterniond.cs startLine: 1387 @@ -1086,8 +1086,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TransformMat3 path: Math/Matrix/Quaterniond.cs startLine: 1405 @@ -1130,8 +1130,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaterniond.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TransformQuat path: Math/Matrix/Quaterniond.cs startLine: 1423 diff --git a/api/Vintagestory.API.MathTools.Vec3Utilsf.yml b/api/Vintagestory.API.MathTools.Vec3Utilsf.yml index 8644a167..608abf0e 100644 --- a/api/Vintagestory.API.MathTools.Vec3Utilsf.yml +++ b/api/Vintagestory.API.MathTools.Vec3Utilsf.yml @@ -41,8 +41,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Vec3Utilsf path: Math/Matrix/Quaternionf.cs startLine: 1111 @@ -78,8 +78,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Create path: Math/Matrix/Quaternionf.cs startLine: 1115 @@ -107,8 +107,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CloneIt path: Math/Matrix/Quaternionf.cs startLine: 1129 @@ -145,8 +145,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromValues path: Math/Matrix/Quaternionf.cs startLine: 1145 @@ -189,8 +189,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Copy path: Math/Matrix/Quaternionf.cs startLine: 1160 @@ -230,8 +230,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Matrix/Quaternionf.cs startLine: 1176 @@ -277,8 +277,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Math/Matrix/Quaternionf.cs startLine: 1191 @@ -321,8 +321,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Substract path: Math/Matrix/Quaternionf.cs startLine: 1206 @@ -365,8 +365,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Multiply path: Math/Matrix/Quaternionf.cs startLine: 1222 @@ -409,8 +409,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mul path: Math/Matrix/Quaternionf.cs startLine: 1237 @@ -453,8 +453,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Divide path: Math/Matrix/Quaternionf.cs startLine: 1249 @@ -497,8 +497,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Min path: Math/Matrix/Quaternionf.cs startLine: 1264 @@ -541,8 +541,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Max path: Math/Matrix/Quaternionf.cs startLine: 1279 @@ -585,8 +585,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Scale path: Math/Matrix/Quaternionf.cs startLine: 1294 @@ -629,8 +629,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ScaleAndAdd path: Math/Matrix/Quaternionf.cs startLine: 1310 @@ -676,8 +676,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Distance path: Math/Matrix/Quaternionf.cs startLine: 1324 @@ -717,8 +717,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SquaredDistance path: Math/Matrix/Quaternionf.cs startLine: 1338 @@ -758,8 +758,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Length_ path: Math/Matrix/Quaternionf.cs startLine: 1351 @@ -796,8 +796,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SquaredLength path: Math/Matrix/Quaternionf.cs startLine: 1364 @@ -834,8 +834,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Negate path: Math/Matrix/Quaternionf.cs startLine: 1380 @@ -875,8 +875,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Normalize path: Math/Matrix/Quaternionf.cs startLine: 1394 @@ -916,8 +916,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dot path: Math/Matrix/Quaternionf.cs startLine: 1417 @@ -957,8 +957,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Cross path: Math/Matrix/Quaternionf.cs startLine: 1429 @@ -1001,8 +1001,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Lerp path: Math/Matrix/Quaternionf.cs startLine: 1453 @@ -1048,8 +1048,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TransformMat4 path: Math/Matrix/Quaternionf.cs startLine: 1472 @@ -1092,8 +1092,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TransformMat3 path: Math/Matrix/Quaternionf.cs startLine: 1490 @@ -1136,8 +1136,8 @@ items: source: remote: path: VintagestoryApi/Math/Matrix/Quaternionf.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TransformQuat path: Math/Matrix/Quaternionf.cs startLine: 1508 diff --git a/api/Vintagestory.API.MathTools.Vec3d.yml b/api/Vintagestory.API.MathTools.Vec3d.yml index a7bbcaee..f10b7a9a 100644 --- a/api/Vintagestory.API.MathTools.Vec3d.yml +++ b/api/Vintagestory.API.MathTools.Vec3d.yml @@ -106,8 +106,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Vec3d path: Math/Vector/Vec3d.cs startLine: 11 @@ -153,8 +153,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X path: Math/Vector/Vec3d.cs startLine: 15 @@ -192,8 +192,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y path: Math/Vector/Vec3d.cs startLine: 17 @@ -231,8 +231,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Z path: Math/Vector/Vec3d.cs startLine: 19 @@ -270,8 +270,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AsBlockPos path: Math/Vector/Vec3d.cs startLine: 21 @@ -309,8 +309,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XInt path: Math/Vector/Vec3d.cs startLine: 24 @@ -348,8 +348,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: YInt path: Math/Vector/Vec3d.cs startLine: 26 @@ -387,8 +387,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ZInt path: Math/Vector/Vec3d.cs startLine: 28 @@ -426,8 +426,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Zero path: Math/Vector/Vec3d.cs startLine: 34 @@ -457,8 +457,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec3d.cs startLine: 37 @@ -486,8 +486,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec3d.cs startLine: 42 @@ -522,8 +522,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec3d.cs startLine: 53 @@ -557,8 +557,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec3d.cs startLine: 60 @@ -589,8 +589,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Math/Vector/Vec3d.cs startLine: 72 @@ -627,8 +627,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dot path: Math/Vector/Vec3d.cs startLine: 80 @@ -658,8 +658,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Cross path: Math/Vector/Vec3d.cs startLine: 86 @@ -689,8 +689,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Cross path: Math/Vector/Vec3d.cs startLine: 95 @@ -720,8 +720,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Cross path: Math/Vector/Vec3d.cs startLine: 102 @@ -751,8 +751,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Negate path: Math/Vector/Vec3d.cs startLine: 109 @@ -777,8 +777,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Cross path: Math/Vector/Vec3d.cs startLine: 116 @@ -808,8 +808,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Math/Vector/Vec3d.cs startLine: 123 @@ -839,8 +839,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Math/Vector/Vec3d.cs startLine: 130 @@ -870,8 +870,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Math/Vector/Vec3d.cs startLine: 138 @@ -901,8 +901,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddCopy path: Math/Vector/Vec3d.cs startLine: 146 @@ -932,8 +932,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddCopy path: Math/Vector/Vec3d.cs startLine: 151 @@ -963,8 +963,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddCopy path: Math/Vector/Vec3d.cs startLine: 156 @@ -1001,8 +1001,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddCopy path: Math/Vector/Vec3d.cs startLine: 161 @@ -1039,8 +1039,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddCopy path: Math/Vector/Vec3d.cs startLine: 166 @@ -1070,8 +1070,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddCopy path: Math/Vector/Vec3d.cs startLine: 171 @@ -1101,8 +1101,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mul path: Math/Vector/Vec3d.cs startLine: 176 @@ -1135,8 +1135,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mul path: Math/Vector/Vec3d.cs startLine: 184 @@ -1173,8 +1173,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Math/Vector/Vec3d.cs startLine: 192 @@ -1211,8 +1211,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sub path: Math/Vector/Vec3d.cs startLine: 200 @@ -1249,8 +1249,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SubCopy path: Math/Vector/Vec3d.cs startLine: 208 @@ -1287,8 +1287,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SubCopy path: Math/Vector/Vec3d.cs startLine: 213 @@ -1318,8 +1318,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToFloatArray path: Math/Vector/Vec3d.cs startLine: 219 @@ -1346,8 +1346,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToDoubleArray path: Math/Vector/Vec3d.cs startLine: 224 @@ -1374,8 +1374,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Length path: Math/Vector/Vec3d.cs startLine: 229 @@ -1402,8 +1402,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LengthSq path: Math/Vector/Vec3d.cs startLine: 234 @@ -1430,8 +1430,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Normalize path: Math/Vector/Vec3d.cs startLine: 239 @@ -1458,8 +1458,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Math/Vector/Vec3d.cs startLine: 252 @@ -1486,8 +1486,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sub path: Math/Vector/Vec3d.cs startLine: 257 @@ -1517,8 +1517,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Math/Vector/Vec3d.cs startLine: 265 @@ -1551,8 +1551,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Math/Vector/Vec3d.cs startLine: 273 @@ -1584,8 +1584,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sub path: Math/Vector/Vec3d.cs startLine: 282 @@ -1617,8 +1617,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sub path: Math/Vector/Vec3d.cs startLine: 291 @@ -1648,8 +1648,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Scale path: Math/Vector/Vec3d.cs startLine: 302 @@ -1684,8 +1684,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Offset path: Math/Vector/Vec3d.cs startLine: 313 @@ -1717,8 +1717,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Offset path: Math/Vector/Vec3d.cs startLine: 324 @@ -1757,8 +1757,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OffsetCopy path: Math/Vector/Vec3d.cs startLine: 332 @@ -1795,8 +1795,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OffsetCopy path: Math/Vector/Vec3d.cs startLine: 341 @@ -1833,8 +1833,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Vector/Vec3d.cs startLine: 350 @@ -1864,8 +1864,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Vector/Vec3d.cs startLine: 358 @@ -1895,8 +1895,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Vector/Vec3d.cs startLine: 366 @@ -1933,8 +1933,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Vector/Vec3d.cs startLine: 374 @@ -1964,8 +1964,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Vector/Vec3d.cs startLine: 382 @@ -1995,8 +1995,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Vector/Vec3d.cs startLine: 390 @@ -2026,8 +2026,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SquareDistanceTo path: Math/Vector/Vec3d.cs startLine: 398 @@ -2064,8 +2064,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SquareDistanceTo path: Math/Vector/Vec3d.cs startLine: 407 @@ -2102,8 +2102,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SquareDistanceTo path: Math/Vector/Vec3d.cs startLine: 416 @@ -2133,8 +2133,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SquareDistanceTo path: Math/Vector/Vec3d.cs startLine: 425 @@ -2164,8 +2164,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DistanceTo path: Math/Vector/Vec3d.cs startLine: 434 @@ -2195,8 +2195,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DistanceTo path: Math/Vector/Vec3d.cs startLine: 443 @@ -2233,8 +2233,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HorizontalSquareDistanceTo path: Math/Vector/Vec3d.cs startLine: 452 @@ -2264,8 +2264,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HorizontalSquareDistanceTo path: Math/Vector/Vec3d.cs startLine: 460 @@ -2300,8 +2300,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Subtraction path: Math/Vector/Vec3d.cs startLine: 469 @@ -2336,8 +2336,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Addition path: Math/Vector/Vec3d.cs startLine: 474 @@ -2372,8 +2372,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Addition path: Math/Vector/Vec3d.cs startLine: 479 @@ -2408,8 +2408,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Subtraction path: Math/Vector/Vec3d.cs startLine: 484 @@ -2444,8 +2444,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Subtraction path: Math/Vector/Vec3d.cs startLine: 490 @@ -2480,8 +2480,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Addition path: Math/Vector/Vec3d.cs startLine: 495 @@ -2516,8 +2516,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Multiply path: Math/Vector/Vec3d.cs startLine: 501 @@ -2552,8 +2552,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Multiply path: Math/Vector/Vec3d.cs startLine: 506 @@ -2588,8 +2588,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Multiply path: Math/Vector/Vec3d.cs startLine: 511 @@ -2624,8 +2624,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Multiply path: Math/Vector/Vec3d.cs startLine: 517 @@ -2660,8 +2660,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Multiply path: Math/Vector/Vec3d.cs startLine: 523 @@ -2696,8 +2696,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Division path: Math/Vector/Vec3d.cs startLine: 528 @@ -2732,8 +2732,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Equality path: Math/Vector/Vec3d.cs startLine: 534 @@ -2768,8 +2768,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Inequality path: Math/Vector/Vec3d.cs startLine: 544 @@ -2804,8 +2804,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToVec3f path: Math/Vector/Vec3d.cs startLine: 551 @@ -2832,8 +2832,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Math/Vector/Vec3d.cs startLine: 557 @@ -2864,8 +2864,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Math/Vector/Vec3d.cs startLine: 563 @@ -2893,8 +2893,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateFromBytes path: Math/Vector/Vec3d.cs startLine: 570 @@ -2924,8 +2924,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AheadCopy path: Math/Vector/Vec3d.cs startLine: 575 @@ -2962,8 +2962,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AheadCopy path: Math/Vector/Vec3d.cs startLine: 586 @@ -3000,8 +3000,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Ahead path: Math/Vector/Vec3d.cs startLine: 598 @@ -3038,8 +3038,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Ahead path: Math/Vector/Vec3d.cs startLine: 614 @@ -3076,8 +3076,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Math/Vector/Vec3d.cs startLine: 629 @@ -3112,8 +3112,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Math/Vector/Vec3d.cs startLine: 638 @@ -3149,8 +3149,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Math/Vector/Vec3d.cs startLine: 643 @@ -3188,8 +3188,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHashCode path: Math/Vector/Vec3d.cs startLine: 653 @@ -3220,8 +3220,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AsVec3i path: Math/Vector/Vec3d.cs startLine: 676 diff --git a/api/Vintagestory.API.MathTools.Vec3f.yml b/api/Vintagestory.API.MathTools.Vec3f.yml index 4f5df938..6500b7f7 100644 --- a/api/Vintagestory.API.MathTools.Vec3f.yml +++ b/api/Vintagestory.API.MathTools.Vec3f.yml @@ -81,8 +81,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Vec3f path: Math/Vector/Vec3f.cs startLine: 10 @@ -139,8 +139,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Zero path: Math/Vector/Vec3f.cs startLine: 17 @@ -170,8 +170,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Half path: Math/Vector/Vec3f.cs startLine: 18 @@ -199,8 +199,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: One path: Math/Vector/Vec3f.cs startLine: 19 @@ -228,8 +228,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X path: Math/Vector/Vec3f.cs startLine: 26 @@ -276,8 +276,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y path: Math/Vector/Vec3f.cs startLine: 32 @@ -324,8 +324,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Z path: Math/Vector/Vec3f.cs startLine: 38 @@ -372,8 +372,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: R path: Math/Vector/Vec3f.cs startLine: 44 @@ -403,8 +403,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: G path: Math/Vector/Vec3f.cs startLine: 48 @@ -434,8 +434,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: B path: Math/Vector/Vec3f.cs startLine: 52 @@ -465,8 +465,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec3f.cs startLine: 57 @@ -496,8 +496,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsZero path: Math/Vector/Vec3f.cs startLine: 63 @@ -525,8 +525,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec3f.cs startLine: 71 @@ -566,8 +566,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec3f.cs startLine: 82 @@ -601,8 +601,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec3f.cs startLine: 93 @@ -636,8 +636,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec3f.cs startLine: 100 @@ -668,8 +668,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Math/Vector/Vec3f.cs startLine: 112 @@ -706,8 +706,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Length path: Math/Vector/Vec3f.cs startLine: 123 @@ -737,8 +737,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Negate path: Math/Vector/Vec3f.cs startLine: 128 @@ -763,8 +763,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dot path: Math/Vector/Vec3f.cs startLine: 142 @@ -798,8 +798,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dot path: Math/Vector/Vec3f.cs startLine: 146 @@ -829,8 +829,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dot path: Math/Vector/Vec3f.cs startLine: 156 @@ -864,8 +864,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dot path: Math/Vector/Vec3f.cs startLine: 166 @@ -902,8 +902,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Dot path: Math/Vector/Vec3f.cs startLine: 176 @@ -940,8 +940,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Cross path: Math/Vector/Vec3f.cs startLine: 181 @@ -971,8 +971,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToDoubleArray path: Math/Vector/Vec3f.cs startLine: 190 @@ -999,8 +999,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Cross path: Math/Vector/Vec3f.cs startLine: 200 @@ -1034,8 +1034,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Cross path: Math/Vector/Vec3f.cs startLine: 212 @@ -1069,8 +1069,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Math/Vector/Vec3f.cs startLine: 226 @@ -1113,8 +1113,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Math/Vector/Vec3f.cs startLine: 239 @@ -1148,8 +1148,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sub path: Math/Vector/Vec3f.cs startLine: 253 @@ -1183,8 +1183,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Sub path: Math/Vector/Vec3f.cs startLine: 261 @@ -1214,8 +1214,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mul path: Math/Vector/Vec3f.cs startLine: 275 @@ -1252,8 +1252,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Math/Vector/Vec3f.cs startLine: 287 @@ -1283,8 +1283,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Normalize path: Math/Vector/Vec3f.cs startLine: 296 @@ -1314,8 +1314,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DistanceSq path: Math/Vector/Vec3f.cs startLine: 319 @@ -1358,8 +1358,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DistanceTo path: Math/Vector/Vec3f.cs startLine: 334 @@ -1393,8 +1393,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DistanceTo path: Math/Vector/Vec3f.cs startLine: 343 @@ -1424,8 +1424,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddCopy path: Math/Vector/Vec3f.cs startLine: 359 @@ -1468,8 +1468,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddCopy path: Math/Vector/Vec3f.cs startLine: 369 @@ -1503,8 +1503,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReduceBy path: Math/Vector/Vec3f.cs startLine: 380 @@ -1538,8 +1538,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NormalizedCopy path: Math/Vector/Vec3f.cs startLine: 391 @@ -1569,8 +1569,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToVec3d path: Math/Vector/Vec3f.cs startLine: 405 @@ -1600,8 +1600,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Subtraction path: Math/Vector/Vec3f.cs startLine: 411 @@ -1636,8 +1636,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Addition path: Math/Vector/Vec3f.cs startLine: 416 @@ -1672,8 +1672,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Subtraction path: Math/Vector/Vec3f.cs startLine: 422 @@ -1708,8 +1708,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Subtraction path: Math/Vector/Vec3f.cs startLine: 428 @@ -1744,8 +1744,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Addition path: Math/Vector/Vec3f.cs startLine: 433 @@ -1780,8 +1780,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Multiply path: Math/Vector/Vec3f.cs startLine: 439 @@ -1816,8 +1816,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Multiply path: Math/Vector/Vec3f.cs startLine: 444 @@ -1852,8 +1852,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Multiply path: Math/Vector/Vec3f.cs startLine: 449 @@ -1888,8 +1888,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Division path: Math/Vector/Vec3f.cs startLine: 454 @@ -1924,8 +1924,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Equality path: Math/Vector/Vec3f.cs startLine: 461 @@ -1960,8 +1960,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Inequality path: Math/Vector/Vec3f.cs startLine: 471 @@ -1996,8 +1996,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Vector/Vec3f.cs startLine: 485 @@ -2039,8 +2039,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Vector/Vec3f.cs startLine: 497 @@ -2073,8 +2073,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Vector/Vec3f.cs startLine: 505 @@ -2107,8 +2107,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Vector/Vec3f.cs startLine: 517 @@ -2139,8 +2139,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Math/Vector/Vec3f.cs startLine: 528 @@ -2171,8 +2171,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Math/Vector/Vec3f.cs startLine: 534 @@ -2200,8 +2200,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateFromBytes path: Math/Vector/Vec3f.cs startLine: 541 @@ -2231,8 +2231,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToVec4f path: Math/Vector/Vec3f.cs startLine: 564 @@ -2265,8 +2265,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Math/Vector/Vec3f.cs startLine: 570 @@ -2301,8 +2301,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Math/Vector/Vec3f.cs startLine: 579 @@ -2338,8 +2338,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Math/Vector/Vec3f.cs startLine: 584 @@ -2377,8 +2377,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHashCode path: Math/Vector/Vec3f.cs startLine: 594 @@ -2409,8 +2409,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AsVec3i path: Math/Vector/Vec3f.cs startLine: 599 diff --git a/api/Vintagestory.API.MathTools.Vec3i.yml b/api/Vintagestory.API.MathTools.Vec3i.yml index 163c269d..d89513e7 100644 --- a/api/Vintagestory.API.MathTools.Vec3i.yml +++ b/api/Vintagestory.API.MathTools.Vec3i.yml @@ -58,8 +58,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Vec3i path: Math/Vector/Vec3i.cs startLine: 10 @@ -114,8 +114,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X path: Math/Vector/Vec3i.cs startLine: 16 @@ -160,8 +160,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y path: Math/Vector/Vec3i.cs startLine: 19 @@ -206,8 +206,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Z path: Math/Vector/Vec3i.cs startLine: 22 @@ -252,8 +252,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DirectAndIndirectNeighbours path: Math/Vector/Vec3i.cs startLine: 27 @@ -281,8 +281,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsZero path: Math/Vector/Vec3i.cs startLine: 29 @@ -310,8 +310,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Math/Vector/Vec3i.cs startLine: 37 @@ -348,8 +348,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AsBlockPos path: Math/Vector/Vec3i.cs startLine: 62 @@ -377,8 +377,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec3i.cs startLine: 67 @@ -406,8 +406,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec3i.cs startLine: 72 @@ -442,8 +442,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec3i.cs startLine: 79 @@ -474,8 +474,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Math/Vector/Vec3i.cs startLine: 86 @@ -512,8 +512,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddCopy path: Math/Vector/Vec3i.cs startLine: 94 @@ -550,8 +550,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Math/Vector/Vec3i.cs startLine: 99 @@ -590,8 +590,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Math/Vector/Vec3i.cs startLine: 107 @@ -626,8 +626,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ManhattenDistanceTo path: Math/Vector/Vec3i.cs startLine: 115 @@ -657,8 +657,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SquareDistanceTo path: Math/Vector/Vec3i.cs startLine: 120 @@ -688,8 +688,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SquareDistanceTo path: Math/Vector/Vec3i.cs startLine: 130 @@ -726,8 +726,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DistanceTo path: Math/Vector/Vec3i.cs startLine: 139 @@ -757,8 +757,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Reduce path: Math/Vector/Vec3i.cs startLine: 154 @@ -792,8 +792,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReduceX path: Math/Vector/Vec3i.cs startLine: 161 @@ -824,8 +824,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReduceY path: Math/Vector/Vec3i.cs startLine: 166 @@ -856,8 +856,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReduceZ path: Math/Vector/Vec3i.cs startLine: 171 @@ -888,8 +888,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Vector/Vec3i.cs startLine: 178 @@ -926,8 +926,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Vector/Vec3i.cs startLine: 186 @@ -957,8 +957,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Math/Vector/Vec3i.cs startLine: 203 @@ -985,8 +985,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Math/Vector/Vec3i.cs startLine: 208 @@ -1024,8 +1024,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Math/Vector/Vec3i.cs startLine: 223 @@ -1061,8 +1061,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHashCode path: Math/Vector/Vec3i.cs startLine: 228 @@ -1093,8 +1093,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToString path: Math/Vector/Vec3i.cs startLine: 233 @@ -1125,8 +1125,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Zero path: Math/Vector/Vec3i.cs startLine: 264 @@ -1154,8 +1154,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XZ path: Math/Vector/Vec3i.cs startLine: 266 @@ -1183,8 +1183,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddCopy path: Math/Vector/Vec3i.cs startLine: 268 @@ -1214,8 +1214,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBlockPos path: Math/Vector/Vec3i.cs startLine: 273 @@ -1242,8 +1242,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Math/Vector/Vec3i.cs startLine: 283 @@ -1280,8 +1280,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Multiply path: Math/Vector/Vec3i.cs startLine: 290 @@ -1316,8 +1316,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Multiply path: Math/Vector/Vec3i.cs startLine: 295 @@ -1352,8 +1352,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Division path: Math/Vector/Vec3i.cs startLine: 300 @@ -1388,8 +1388,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Addition path: Math/Vector/Vec3i.cs startLine: 305 @@ -1424,8 +1424,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Subtraction path: Math/Vector/Vec3i.cs startLine: 310 @@ -1460,8 +1460,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_UnaryNegation path: Math/Vector/Vec3i.cs startLine: 315 @@ -1494,8 +1494,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Equality path: Math/Vector/Vec3i.cs startLine: 320 @@ -1530,8 +1530,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Inequality path: Math/Vector/Vec3i.cs startLine: 331 @@ -1566,8 +1566,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AsVec3i path: Math/Vector/Vec3i.cs startLine: 336 diff --git a/api/Vintagestory.API.MathTools.Vec4d.yml b/api/Vintagestory.API.MathTools.Vec4d.yml index 7c951bd8..104228d0 100644 --- a/api/Vintagestory.API.MathTools.Vec4d.yml +++ b/api/Vintagestory.API.MathTools.Vec4d.yml @@ -29,8 +29,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Vec4d path: Math/Vector/Vec4d.cs startLine: 2 @@ -64,8 +64,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X path: Math/Vector/Vec4d.cs startLine: 4 @@ -91,8 +91,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y path: Math/Vector/Vec4d.cs startLine: 5 @@ -118,8 +118,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Z path: Math/Vector/Vec4d.cs startLine: 6 @@ -145,8 +145,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: W path: Math/Vector/Vec4d.cs startLine: 7 @@ -172,8 +172,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec4d.cs startLine: 9 @@ -201,8 +201,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec4d.cs startLine: 14 @@ -239,8 +239,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Math/Vector/Vec4d.cs startLine: 27 @@ -277,8 +277,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XYZ path: Math/Vector/Vec4d.cs startLine: 42 @@ -306,8 +306,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Vector/Vec4d.cs startLine: 44 @@ -344,8 +344,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SquareDistanceTo path: Math/Vector/Vec4d.cs startLine: 52 @@ -382,8 +382,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SquareDistanceTo path: Math/Vector/Vec4d.cs startLine: 61 @@ -420,8 +420,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SquareDistanceTo path: Math/Vector/Vec4d.cs startLine: 70 @@ -451,8 +451,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HorizontalSquareDistanceTo path: Math/Vector/Vec4d.cs startLine: 79 @@ -482,8 +482,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4d.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HorizontalSquareDistanceTo path: Math/Vector/Vec4d.cs startLine: 87 diff --git a/api/Vintagestory.API.MathTools.Vec4f.yml b/api/Vintagestory.API.MathTools.Vec4f.yml index 5310dcb1..a42eccc8 100644 --- a/api/Vintagestory.API.MathTools.Vec4f.yml +++ b/api/Vintagestory.API.MathTools.Vec4f.yml @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Vec4f path: Math/Vector/Vec4f.cs startLine: 4 @@ -79,8 +79,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X path: Math/Vector/Vec4f.cs startLine: 6 @@ -106,8 +106,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y path: Math/Vector/Vec4f.cs startLine: 7 @@ -133,8 +133,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Z path: Math/Vector/Vec4f.cs startLine: 8 @@ -160,8 +160,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: W path: Math/Vector/Vec4f.cs startLine: 9 @@ -187,8 +187,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: R path: Math/Vector/Vec4f.cs startLine: 15 @@ -218,8 +218,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: G path: Math/Vector/Vec4f.cs startLine: 19 @@ -249,8 +249,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: B path: Math/Vector/Vec4f.cs startLine: 23 @@ -280,8 +280,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: A path: Math/Vector/Vec4f.cs startLine: 27 @@ -311,8 +311,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: XYZ path: Math/Vector/Vec4f.cs startLine: 30 @@ -340,8 +340,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec4f.cs startLine: 32 @@ -369,8 +369,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec4f.cs startLine: 37 @@ -407,8 +407,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Math/Vector/Vec4f.cs startLine: 50 @@ -445,8 +445,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Vector/Vec4f.cs startLine: 56 @@ -479,8 +479,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Vector/Vec4f.cs startLine: 65 @@ -510,8 +510,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mul path: Math/Vector/Vec4f.cs startLine: 74 @@ -541,8 +541,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/Vector/Vec4f.cs startLine: 83 @@ -581,8 +581,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Math/Vector/Vec4f.cs startLine: 92 @@ -609,8 +609,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NormalizeXYZ path: Math/Vector/Vec4f.cs startLine: 102 @@ -640,8 +640,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LengthXYZ path: Math/Vector/Vec4f.cs startLine: 122 @@ -671,8 +671,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Subtraction path: Math/Vector/Vec4f.cs startLine: 129 @@ -707,8 +707,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Addition path: Math/Vector/Vec4f.cs startLine: 134 @@ -743,8 +743,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Addition path: Math/Vector/Vec4f.cs startLine: 139 @@ -779,8 +779,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Subtraction path: Math/Vector/Vec4f.cs startLine: 144 @@ -815,8 +815,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Subtraction path: Math/Vector/Vec4f.cs startLine: 150 @@ -851,8 +851,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Addition path: Math/Vector/Vec4f.cs startLine: 155 @@ -887,8 +887,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Multiply path: Math/Vector/Vec4f.cs startLine: 161 @@ -923,8 +923,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Multiply path: Math/Vector/Vec4f.cs startLine: 166 @@ -959,8 +959,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Multiply path: Math/Vector/Vec4f.cs startLine: 171 @@ -995,8 +995,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4f.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: op_Division path: Math/Vector/Vec4f.cs startLine: 176 diff --git a/api/Vintagestory.API.MathTools.Vec4i-1.yml b/api/Vintagestory.API.MathTools.Vec4i-1.yml index 9636a181..a55d9fad 100644 --- a/api/Vintagestory.API.MathTools.Vec4i-1.yml +++ b/api/Vintagestory.API.MathTools.Vec4i-1.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Vec4i path: Math/Vector/Vec4i.cs startLine: 68 @@ -61,8 +61,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X path: Math/Vector/Vec4i.cs startLine: 70 @@ -90,8 +90,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y path: Math/Vector/Vec4i.cs startLine: 71 @@ -119,8 +119,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Z path: Math/Vector/Vec4i.cs startLine: 72 @@ -148,8 +148,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Value path: Math/Vector/Vec4i.cs startLine: 73 @@ -177,8 +177,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec4i.cs startLine: 75 @@ -206,8 +206,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec4i.cs startLine: 80 diff --git a/api/Vintagestory.API.MathTools.Vec4i.yml b/api/Vintagestory.API.MathTools.Vec4i.yml index 3887fb62..10153da2 100644 --- a/api/Vintagestory.API.MathTools.Vec4i.yml +++ b/api/Vintagestory.API.MathTools.Vec4i.yml @@ -25,8 +25,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Vec4i path: Math/Vector/Vec4i.cs startLine: 7 @@ -65,8 +65,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X path: Math/Vector/Vec4i.cs startLine: 9 @@ -92,8 +92,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y path: Math/Vector/Vec4i.cs startLine: 10 @@ -119,8 +119,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Z path: Math/Vector/Vec4i.cs startLine: 11 @@ -146,8 +146,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: W path: Math/Vector/Vec4i.cs startLine: 12 @@ -173,8 +173,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec4i.cs startLine: 14 @@ -202,8 +202,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec4i.cs startLine: 19 @@ -236,8 +236,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec4i.cs startLine: 27 @@ -274,8 +274,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Math/Vector/Vec4i.cs startLine: 35 @@ -311,8 +311,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHashCode path: Math/Vector/Vec4i.cs startLine: 41 @@ -343,8 +343,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4i.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HorDistanceSqTo path: Math/Vector/Vec4i.cs startLine: 57 diff --git a/api/Vintagestory.API.MathTools.Vec4s-1.yml b/api/Vintagestory.API.MathTools.Vec4s-1.yml index 4e97c264..536cd4a4 100644 --- a/api/Vintagestory.API.MathTools.Vec4s-1.yml +++ b/api/Vintagestory.API.MathTools.Vec4s-1.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4s.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Vec4s path: Math/Vector/Vec4s.cs startLine: 44 @@ -61,8 +61,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4s.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X path: Math/Vector/Vec4s.cs startLine: 46 @@ -90,8 +90,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4s.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y path: Math/Vector/Vec4s.cs startLine: 47 @@ -119,8 +119,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4s.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Z path: Math/Vector/Vec4s.cs startLine: 48 @@ -148,8 +148,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4s.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Value path: Math/Vector/Vec4s.cs startLine: 49 @@ -177,8 +177,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4s.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec4s.cs startLine: 51 @@ -206,8 +206,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4s.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec4s.cs startLine: 56 diff --git a/api/Vintagestory.API.MathTools.Vec4s.yml b/api/Vintagestory.API.MathTools.Vec4s.yml index a7283f43..ce540af6 100644 --- a/api/Vintagestory.API.MathTools.Vec4s.yml +++ b/api/Vintagestory.API.MathTools.Vec4s.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4s.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Vec4s path: Math/Vector/Vec4s.cs startLine: 7 @@ -61,8 +61,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4s.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X path: Math/Vector/Vec4s.cs startLine: 9 @@ -88,8 +88,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4s.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y path: Math/Vector/Vec4s.cs startLine: 10 @@ -115,8 +115,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4s.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Z path: Math/Vector/Vec4s.cs startLine: 11 @@ -142,8 +142,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4s.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: W path: Math/Vector/Vec4s.cs startLine: 12 @@ -169,8 +169,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4s.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec4s.cs startLine: 14 @@ -198,8 +198,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4s.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec4s.cs startLine: 19 @@ -236,8 +236,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4s.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Math/Vector/Vec4s.cs startLine: 27 @@ -273,8 +273,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4s.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHashCode path: Math/Vector/Vec4s.cs startLine: 33 diff --git a/api/Vintagestory.API.MathTools.Vec4us-1.yml b/api/Vintagestory.API.MathTools.Vec4us-1.yml index 0c5f800b..d674c598 100644 --- a/api/Vintagestory.API.MathTools.Vec4us-1.yml +++ b/api/Vintagestory.API.MathTools.Vec4us-1.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4Us.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Vec4us path: Math/Vector/Vec4Us.cs startLine: 44 @@ -61,8 +61,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4Us.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X path: Math/Vector/Vec4Us.cs startLine: 46 @@ -90,8 +90,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4Us.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y path: Math/Vector/Vec4Us.cs startLine: 47 @@ -119,8 +119,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4Us.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Z path: Math/Vector/Vec4Us.cs startLine: 48 @@ -148,8 +148,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4Us.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Value path: Math/Vector/Vec4Us.cs startLine: 49 @@ -177,8 +177,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4Us.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec4Us.cs startLine: 51 @@ -206,8 +206,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4Us.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec4Us.cs startLine: 56 diff --git a/api/Vintagestory.API.MathTools.Vec4us.yml b/api/Vintagestory.API.MathTools.Vec4us.yml index dce3269d..ce8a7624 100644 --- a/api/Vintagestory.API.MathTools.Vec4us.yml +++ b/api/Vintagestory.API.MathTools.Vec4us.yml @@ -23,8 +23,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4Us.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Vec4us path: Math/Vector/Vec4Us.cs startLine: 7 @@ -61,8 +61,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4Us.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X path: Math/Vector/Vec4Us.cs startLine: 9 @@ -88,8 +88,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4Us.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y path: Math/Vector/Vec4Us.cs startLine: 10 @@ -115,8 +115,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4Us.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Z path: Math/Vector/Vec4Us.cs startLine: 11 @@ -142,8 +142,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4Us.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: W path: Math/Vector/Vec4Us.cs startLine: 12 @@ -169,8 +169,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4Us.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec4Us.cs startLine: 14 @@ -198,8 +198,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4Us.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec4Us.cs startLine: 19 @@ -236,8 +236,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4Us.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Equals path: Math/Vector/Vec4Us.cs startLine: 27 @@ -273,8 +273,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec4Us.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetHashCode path: Math/Vector/Vec4Us.cs startLine: 33 diff --git a/api/Vintagestory.API.MathTools.WeightedFloat.yml b/api/Vintagestory.API.MathTools.WeightedFloat.yml index 90e11c35..cd03a13f 100644 --- a/api/Vintagestory.API.MathTools.WeightedFloat.yml +++ b/api/Vintagestory.API.MathTools.WeightedFloat.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Math/WeightedValue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WeightedFloat path: Math/WeightedValue.cs startLine: 58 @@ -61,8 +61,8 @@ items: source: remote: path: VintagestoryApi/Math/WeightedValue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/WeightedValue.cs startLine: 59 @@ -90,8 +90,8 @@ items: source: remote: path: VintagestoryApi/Math/WeightedValue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/WeightedValue.cs startLine: 61 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Math/WeightedValue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: New path: Math/WeightedValue.cs startLine: 67 @@ -160,8 +160,8 @@ items: source: remote: path: VintagestoryApi/Math/WeightedValue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Math/WeightedValue.cs startLine: 72 @@ -189,8 +189,8 @@ items: source: remote: path: VintagestoryApi/Math/WeightedValue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Math/WeightedValue.cs startLine: 78 @@ -218,8 +218,8 @@ items: source: remote: path: VintagestoryApi/Math/WeightedValue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Math/WeightedValue.cs startLine: 84 @@ -246,8 +246,8 @@ items: source: remote: path: VintagestoryApi/Math/WeightedValue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetLerped path: Math/WeightedValue.cs startLine: 93 diff --git a/api/Vintagestory.API.MathTools.WeightedFloatArray.yml b/api/Vintagestory.API.MathTools.WeightedFloatArray.yml index dd2824e6..241ae20e 100644 --- a/api/Vintagestory.API.MathTools.WeightedFloatArray.yml +++ b/api/Vintagestory.API.MathTools.WeightedFloatArray.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Math/WeightedValue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WeightedFloatArray path: Math/WeightedValue.cs startLine: 100 @@ -62,8 +62,8 @@ items: source: remote: path: VintagestoryApi/Math/WeightedValue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/WeightedValue.cs startLine: 102 @@ -91,8 +91,8 @@ items: source: remote: path: VintagestoryApi/Math/WeightedValue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/WeightedValue.cs startLine: 104 @@ -125,8 +125,8 @@ items: source: remote: path: VintagestoryApi/Math/WeightedValue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: New path: Math/WeightedValue.cs startLine: 110 @@ -161,8 +161,8 @@ items: source: remote: path: VintagestoryApi/Math/WeightedValue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clone path: Math/WeightedValue.cs startLine: 115 @@ -189,8 +189,8 @@ items: source: remote: path: VintagestoryApi/Math/WeightedValue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Math/WeightedValue.cs startLine: 125 @@ -218,8 +218,8 @@ items: source: remote: path: VintagestoryApi/Math/WeightedValue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Math/WeightedValue.cs startLine: 132 @@ -247,8 +247,8 @@ items: source: remote: path: VintagestoryApi/Math/WeightedValue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetLerped path: Math/WeightedValue.cs startLine: 139 diff --git a/api/Vintagestory.API.MathTools.WeightedInt.yml b/api/Vintagestory.API.MathTools.WeightedInt.yml index e7cd5471..252ba53e 100644 --- a/api/Vintagestory.API.MathTools.WeightedInt.yml +++ b/api/Vintagestory.API.MathTools.WeightedInt.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Math/WeightedValue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WeightedInt path: Math/WeightedValue.cs startLine: 31 @@ -59,8 +59,8 @@ items: source: remote: path: VintagestoryApi/Math/WeightedValue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/WeightedValue.cs startLine: 32 @@ -88,8 +88,8 @@ items: source: remote: path: VintagestoryApi/Math/WeightedValue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/WeightedValue.cs startLine: 34 @@ -122,8 +122,8 @@ items: source: remote: path: VintagestoryApi/Math/WeightedValue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: New path: Math/WeightedValue.cs startLine: 40 @@ -158,8 +158,8 @@ items: source: remote: path: VintagestoryApi/Math/WeightedValue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Math/WeightedValue.cs startLine: 45 @@ -187,8 +187,8 @@ items: source: remote: path: VintagestoryApi/Math/WeightedValue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Math/WeightedValue.cs startLine: 51 diff --git a/api/Vintagestory.API.MathTools.WeightedValue-1.yml b/api/Vintagestory.API.MathTools.WeightedValue-1.yml index b739079a..aa8e1a7a 100644 --- a/api/Vintagestory.API.MathTools.WeightedValue-1.yml +++ b/api/Vintagestory.API.MathTools.WeightedValue-1.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Math/WeightedValue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WeightedValue path: Math/WeightedValue.cs startLine: 4 @@ -65,8 +65,8 @@ items: source: remote: path: VintagestoryApi/Math/WeightedValue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Value path: Math/WeightedValue.cs startLine: 6 @@ -94,8 +94,8 @@ items: source: remote: path: VintagestoryApi/Math/WeightedValue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Weight path: Math/WeightedValue.cs startLine: 7 @@ -123,8 +123,8 @@ items: source: remote: path: VintagestoryApi/Math/WeightedValue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/WeightedValue.cs startLine: 9 @@ -152,8 +152,8 @@ items: source: remote: path: VintagestoryApi/Math/WeightedValue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/WeightedValue.cs startLine: 13 @@ -186,8 +186,8 @@ items: source: remote: path: VintagestoryApi/Math/WeightedValue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: New path: Math/WeightedValue.cs startLine: 19 @@ -222,8 +222,8 @@ items: source: remote: path: VintagestoryApi/Math/WeightedValue.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Set path: Math/WeightedValue.cs startLine: 24 diff --git a/api/Vintagestory.API.Net.GameBuild.yml b/api/Vintagestory.API.Net.GameBuild.yml index 29827aaf..c843da31 100644 --- a/api/Vintagestory.API.Net.GameBuild.yml +++ b/api/Vintagestory.API.Net.GameBuild.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Net/GameReleaseVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GameBuild path: Datastructures/Net/GameReleaseVersion.cs startLine: 13 @@ -55,8 +55,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Net/GameReleaseVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: filename path: Datastructures/Net/GameReleaseVersion.cs startLine: 15 @@ -82,8 +82,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Net/GameReleaseVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: filesize path: Datastructures/Net/GameReleaseVersion.cs startLine: 16 @@ -109,8 +109,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Net/GameReleaseVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: md5 path: Datastructures/Net/GameReleaseVersion.cs startLine: 17 @@ -136,8 +136,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Net/GameReleaseVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: urls path: Datastructures/Net/GameReleaseVersion.cs startLine: 18 @@ -163,8 +163,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Net/GameReleaseVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: latest path: Datastructures/Net/GameReleaseVersion.cs startLine: 19 diff --git a/api/Vintagestory.API.Net.GameReleaseVersion.yml b/api/Vintagestory.API.Net.GameReleaseVersion.yml index cb76ea52..1b9f9319 100644 --- a/api/Vintagestory.API.Net.GameReleaseVersion.yml +++ b/api/Vintagestory.API.Net.GameReleaseVersion.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Net/GameReleaseVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GameReleaseVersion path: Datastructures/Net/GameReleaseVersion.cs startLine: 4 @@ -55,8 +55,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Net/GameReleaseVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Windows path: Datastructures/Net/GameReleaseVersion.cs startLine: 6 @@ -82,8 +82,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Net/GameReleaseVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Windowsserver path: Datastructures/Net/GameReleaseVersion.cs startLine: 7 @@ -109,8 +109,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Net/GameReleaseVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Linuxserver path: Datastructures/Net/GameReleaseVersion.cs startLine: 8 @@ -136,8 +136,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Net/GameReleaseVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Linux path: Datastructures/Net/GameReleaseVersion.cs startLine: 9 @@ -163,8 +163,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Net/GameReleaseVersion.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Mac path: Datastructures/Net/GameReleaseVersion.cs startLine: 10 diff --git a/api/Vintagestory.API.Server.ChunkLoadOptions.yml b/api/Vintagestory.API.Server.ChunkLoadOptions.yml index 61f3af9a..972e7c9a 100644 --- a/api/Vintagestory.API.Server.ChunkLoadOptions.yml +++ b/api/Vintagestory.API.Server.ChunkLoadOptions.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChunkLoadOptions path: Server/API/IWorldManagerAPI.cs startLine: 8 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: KeepLoaded path: Server/API/IWorldManagerAPI.cs startLine: 13 @@ -82,8 +82,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnLoaded path: Server/API/IWorldManagerAPI.cs startLine: 17 @@ -111,8 +111,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChunkGenParams path: Server/API/IWorldManagerAPI.cs startLine: 21 diff --git a/api/Vintagestory.API.Server.ChunkPeekOptions.yml b/api/Vintagestory.API.Server.ChunkPeekOptions.yml index 31916696..9f38df3e 100644 --- a/api/Vintagestory.API.Server.ChunkPeekOptions.yml +++ b/api/Vintagestory.API.Server.ChunkPeekOptions.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChunkPeekOptions path: Server/API/IWorldManagerAPI.cs startLine: 26 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UntilPass path: Server/API/IWorldManagerAPI.cs startLine: 31 @@ -82,8 +82,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnGenerated path: Server/API/IWorldManagerAPI.cs startLine: 35 @@ -111,8 +111,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChunkGenParams path: Server/API/IWorldManagerAPI.cs startLine: 39 diff --git a/api/Vintagestory.API.Server.EnumClientState.yml b/api/Vintagestory.API.Server.EnumClientState.yml index 8d1e6bd4..a75a7fd2 100644 --- a/api/Vintagestory.API.Server.EnumClientState.yml +++ b/api/Vintagestory.API.Server.EnumClientState.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Server/EnumClientState.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumClientState path: Server/EnumClientState.cs startLine: 5 @@ -46,8 +46,8 @@ items: source: remote: path: VintagestoryApi/Server/EnumClientState.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Offline path: Server/EnumClientState.cs startLine: 7 @@ -72,8 +72,8 @@ items: source: remote: path: VintagestoryApi/Server/EnumClientState.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Connecting path: Server/EnumClientState.cs startLine: 8 @@ -98,8 +98,8 @@ items: source: remote: path: VintagestoryApi/Server/EnumClientState.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Connected path: Server/EnumClientState.cs startLine: 9 @@ -124,8 +124,8 @@ items: source: remote: path: VintagestoryApi/Server/EnumClientState.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Playing path: Server/EnumClientState.cs startLine: 10 diff --git a/api/Vintagestory.API.Server.EnumProtectionLevel.yml b/api/Vintagestory.API.Server.EnumProtectionLevel.yml index d53cd274..01f094c2 100644 --- a/api/Vintagestory.API.Server.EnumProtectionLevel.yml +++ b/api/Vintagestory.API.Server.EnumProtectionLevel.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Server/EnumCheatProtectionLevel.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumProtectionLevel path: Server/EnumCheatProtectionLevel.cs startLine: 5 @@ -45,8 +45,8 @@ items: source: remote: path: VintagestoryApi/Server/EnumCheatProtectionLevel.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Off path: Server/EnumCheatProtectionLevel.cs startLine: 10 @@ -73,8 +73,8 @@ items: source: remote: path: VintagestoryApi/Server/EnumCheatProtectionLevel.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Basic path: Server/EnumCheatProtectionLevel.cs startLine: 14 @@ -101,8 +101,8 @@ items: source: remote: path: VintagestoryApi/Server/EnumCheatProtectionLevel.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Pedantic path: Server/EnumCheatProtectionLevel.cs startLine: 18 diff --git a/api/Vintagestory.API.Server.EnumServerResponse.yml b/api/Vintagestory.API.Server.EnumServerResponse.yml index 198e526c..fc82cf93 100644 --- a/api/Vintagestory.API.Server.EnumServerResponse.yml +++ b/api/Vintagestory.API.Server.EnumServerResponse.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IPlayerDataManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumServerResponse path: Server/API/IPlayerDataManager.cs startLine: 6 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IPlayerDataManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Good path: Server/API/IPlayerDataManager.cs startLine: 8 @@ -69,8 +69,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IPlayerDataManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Bad path: Server/API/IPlayerDataManager.cs startLine: 9 @@ -95,8 +95,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IPlayerDataManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Offline path: Server/API/IPlayerDataManager.cs startLine: 10 diff --git a/api/Vintagestory.API.Server.EnumServerRunPhase.yml b/api/Vintagestory.API.Server.EnumServerRunPhase.yml index b7351665..858b2ba0 100644 --- a/api/Vintagestory.API.Server.EnumServerRunPhase.yml +++ b/api/Vintagestory.API.Server.EnumServerRunPhase.yml @@ -30,8 +30,8 @@ items: source: remote: path: VintagestoryApi/Server/EnumServerRunPhase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumServerRunPhase path: Server/EnumServerRunPhase.cs startLine: 7 @@ -57,8 +57,8 @@ items: source: remote: path: VintagestoryApi/Server/EnumServerRunPhase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Standby path: Server/EnumServerRunPhase.cs startLine: 12 @@ -85,8 +85,8 @@ items: source: remote: path: VintagestoryApi/Server/EnumServerRunPhase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Start path: Server/EnumServerRunPhase.cs startLine: 17 @@ -113,8 +113,8 @@ items: source: remote: path: VintagestoryApi/Server/EnumServerRunPhase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Initialization path: Server/EnumServerRunPhase.cs startLine: 22 @@ -141,8 +141,8 @@ items: source: remote: path: VintagestoryApi/Server/EnumServerRunPhase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Configuration path: Server/EnumServerRunPhase.cs startLine: 27 @@ -169,8 +169,8 @@ items: source: remote: path: VintagestoryApi/Server/EnumServerRunPhase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadAssets path: Server/EnumServerRunPhase.cs startLine: 32 @@ -210,8 +210,8 @@ items: source: remote: path: VintagestoryApi/Server/EnumServerRunPhase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AssetsReady path: Server/EnumServerRunPhase.cs startLine: 34 @@ -236,8 +236,8 @@ items: source: remote: path: VintagestoryApi/Server/EnumServerRunPhase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AssetsFinalize path: Server/EnumServerRunPhase.cs startLine: 39 @@ -264,8 +264,8 @@ items: source: remote: path: VintagestoryApi/Server/EnumServerRunPhase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadGamePre path: Server/EnumServerRunPhase.cs startLine: 44 @@ -305,8 +305,8 @@ items: source: remote: path: VintagestoryApi/Server/EnumServerRunPhase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ModsAndConfigReady path: Server/EnumServerRunPhase.cs startLine: 46 @@ -331,8 +331,8 @@ items: source: remote: path: VintagestoryApi/Server/EnumServerRunPhase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GameReady path: Server/EnumServerRunPhase.cs startLine: 51 @@ -359,8 +359,8 @@ items: source: remote: path: VintagestoryApi/Server/EnumServerRunPhase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadGame path: Server/EnumServerRunPhase.cs startLine: 56 @@ -400,8 +400,8 @@ items: source: remote: path: VintagestoryApi/Server/EnumServerRunPhase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WorldReady path: Server/EnumServerRunPhase.cs startLine: 62 @@ -428,8 +428,8 @@ items: source: remote: path: VintagestoryApi/Server/EnumServerRunPhase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RunGame path: Server/EnumServerRunPhase.cs startLine: 67 @@ -456,8 +456,8 @@ items: source: remote: path: VintagestoryApi/Server/EnumServerRunPhase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Shutdown path: Server/EnumServerRunPhase.cs startLine: 72 @@ -484,8 +484,8 @@ items: source: remote: path: VintagestoryApi/Server/EnumServerRunPhase.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Exit path: Server/EnumServerRunPhase.cs startLine: 77 diff --git a/api/Vintagestory.API.Server.EnumWorldGenPass.yml b/api/Vintagestory.API.Server.EnumWorldGenPass.yml index 4558adf2..375f9628 100644 --- a/api/Vintagestory.API.Server.EnumWorldGenPass.yml +++ b/api/Vintagestory.API.Server.EnumWorldGenPass.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/EnumWorldGenPass.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumWorldGenPass path: Server/Worldgen/EnumWorldGenPass.cs startLine: 8 @@ -49,8 +49,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/EnumWorldGenPass.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: None path: Server/Worldgen/EnumWorldGenPass.cs startLine: 13 @@ -77,8 +77,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/EnumWorldGenPass.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Terrain path: Server/Worldgen/EnumWorldGenPass.cs startLine: 22 @@ -114,8 +114,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/EnumWorldGenPass.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TerrainFeatures path: Server/Worldgen/EnumWorldGenPass.cs startLine: 36 @@ -153,8 +153,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/EnumWorldGenPass.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Vegetation path: Server/Worldgen/EnumWorldGenPass.cs startLine: 45 @@ -190,8 +190,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/EnumWorldGenPass.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NeighbourSunLightFlood path: Server/Worldgen/EnumWorldGenPass.cs startLine: 52 @@ -223,8 +223,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/EnumWorldGenPass.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PreDone path: Server/Worldgen/EnumWorldGenPass.cs startLine: 58 @@ -254,8 +254,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/EnumWorldGenPass.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Done path: Server/Worldgen/EnumWorldGenPass.cs startLine: 63 diff --git a/api/Vintagestory.API.Server.EnumWorldgenPreset.yml b/api/Vintagestory.API.Server.EnumWorldgenPreset.yml index 039f4111..299ccfab 100644 --- a/api/Vintagestory.API.Server.EnumWorldgenPreset.yml +++ b/api/Vintagestory.API.Server.EnumWorldgenPreset.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/EnumWorldgenPreset.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumWorldgenPreset path: Server/Worldgen/EnumWorldgenPreset.cs startLine: 2 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/EnumWorldgenPreset.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Standard path: Server/Worldgen/EnumWorldgenPreset.cs startLine: 4 @@ -69,8 +69,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/EnumWorldgenPreset.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Superflat path: Server/Worldgen/EnumWorldgenPreset.cs startLine: 5 @@ -95,8 +95,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/EnumWorldgenPreset.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Empty path: Server/Worldgen/EnumWorldgenPreset.cs startLine: 6 diff --git a/api/Vintagestory.API.Server.GrowTreeDelegate.yml b/api/Vintagestory.API.Server.GrowTreeDelegate.yml index cb9d7931..540e81d9 100644 --- a/api/Vintagestory.API.Server.GrowTreeDelegate.yml +++ b/api/Vintagestory.API.Server.GrowTreeDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Server/ITreeGenerator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GrowTreeDelegate path: Server/ITreeGenerator.cs startLine: 5 diff --git a/api/Vintagestory.API.Server.IAsyncServerSystem.yml b/api/Vintagestory.API.Server.IAsyncServerSystem.yml index 1883b33d..37512bdd 100644 --- a/api/Vintagestory.API.Server.IAsyncServerSystem.yml +++ b/api/Vintagestory.API.Server.IAsyncServerSystem.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IAsyncServerSystem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IAsyncServerSystem path: Server/API/IAsyncServerSystem.cs startLine: 5 @@ -45,8 +45,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IAsyncServerSystem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OffThreadInterval path: Server/API/IAsyncServerSystem.cs startLine: 7 @@ -73,8 +73,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IAsyncServerSystem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnSeparateThreadTick path: Server/API/IAsyncServerSystem.cs startLine: 9 @@ -99,8 +99,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IAsyncServerSystem.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ThreadDispose path: Server/API/IAsyncServerSystem.cs startLine: 11 diff --git a/api/Vintagestory.API.Server.IChunkColumnGenerateRequest.yml b/api/Vintagestory.API.Server.IChunkColumnGenerateRequest.yml index be135888..33514a24 100644 --- a/api/Vintagestory.API.Server.IChunkColumnGenerateRequest.yml +++ b/api/Vintagestory.API.Server.IChunkColumnGenerateRequest.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/IChunkColumnGenerateRequest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IChunkColumnGenerateRequest path: Server/Worldgen/IChunkColumnGenerateRequest.cs startLine: 4 @@ -46,8 +46,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/IChunkColumnGenerateRequest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Chunks path: Server/Worldgen/IChunkColumnGenerateRequest.cs startLine: 6 @@ -75,8 +75,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/IChunkColumnGenerateRequest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChunkX path: Server/Worldgen/IChunkColumnGenerateRequest.cs startLine: 7 @@ -104,8 +104,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/IChunkColumnGenerateRequest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChunkZ path: Server/Worldgen/IChunkColumnGenerateRequest.cs startLine: 8 @@ -133,8 +133,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/IChunkColumnGenerateRequest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChunkGenParams path: Server/Worldgen/IChunkColumnGenerateRequest.cs startLine: 9 @@ -162,8 +162,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/IChunkColumnGenerateRequest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NeighbourTerrainHeight path: Server/Worldgen/IChunkColumnGenerateRequest.cs startLine: 10 @@ -191,8 +191,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/IChunkColumnGenerateRequest.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RequiresChunkBorderSmoothing path: Server/Worldgen/IChunkColumnGenerateRequest.cs startLine: 11 diff --git a/api/Vintagestory.API.Server.IChunkProvider.yml b/api/Vintagestory.API.Server.IChunkProvider.yml index e3b14577..e462daa4 100644 --- a/api/Vintagestory.API.Server.IChunkProvider.yml +++ b/api/Vintagestory.API.Server.IChunkProvider.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/INeighbourChunkProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IChunkProvider path: Server/Worldgen/INeighbourChunkProvider.cs startLine: 5 @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/INeighbourChunkProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Logger path: Server/Worldgen/INeighbourChunkProvider.cs startLine: 7 @@ -73,8 +73,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/INeighbourChunkProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetChunk path: Server/Worldgen/INeighbourChunkProvider.cs startLine: 9 @@ -111,8 +111,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/INeighbourChunkProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetUnpackedChunkFast path: Server/Worldgen/INeighbourChunkProvider.cs startLine: 21 @@ -163,8 +163,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/INeighbourChunkProvider.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChunkIndex3D path: Server/Worldgen/INeighbourChunkProvider.cs startLine: 30 diff --git a/api/Vintagestory.API.Server.IChunkProviderThread.yml b/api/Vintagestory.API.Server.IChunkProviderThread.yml index ff95bcd6..cdf57f33 100644 --- a/api/Vintagestory.API.Server.IChunkProviderThread.yml +++ b/api/Vintagestory.API.Server.IChunkProviderThread.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/IChunkProviderThread.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IChunkProviderThread path: Server/Worldgen/IChunkProviderThread.cs startLine: 2 @@ -41,8 +41,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/IChunkProviderThread.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlockAccessor path: Server/Worldgen/IChunkProviderThread.cs startLine: 9 diff --git a/api/Vintagestory.API.Server.ICoreServerAPI.yml b/api/Vintagestory.API.Server.ICoreServerAPI.yml index c20dc504..e4efa339 100644 --- a/api/Vintagestory.API.Server.ICoreServerAPI.yml +++ b/api/Vintagestory.API.Server.ICoreServerAPI.yml @@ -38,8 +38,8 @@ items: source: remote: path: VintagestoryApi/Server/API/ICoreServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ICoreServerAPI path: Server/API/ICoreServerAPI.cs startLine: 8 @@ -95,8 +95,8 @@ items: source: remote: path: VintagestoryApi/Server/API/ICoreServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Event path: Server/API/ICoreServerAPI.cs startLine: 13 @@ -126,8 +126,8 @@ items: source: remote: path: VintagestoryApi/Server/API/ICoreServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WorldManager path: Server/API/ICoreServerAPI.cs startLine: 18 @@ -157,8 +157,8 @@ items: source: remote: path: VintagestoryApi/Server/API/ICoreServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Server path: Server/API/ICoreServerAPI.cs startLine: 24 @@ -188,8 +188,8 @@ items: source: remote: path: VintagestoryApi/Server/API/ICoreServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Permissions path: Server/API/ICoreServerAPI.cs startLine: 30 @@ -219,8 +219,8 @@ items: source: remote: path: VintagestoryApi/Server/API/ICoreServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Groups path: Server/API/ICoreServerAPI.cs startLine: 35 @@ -250,8 +250,8 @@ items: source: remote: path: VintagestoryApi/Server/API/ICoreServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerData path: Server/API/ICoreServerAPI.cs startLine: 40 @@ -281,8 +281,8 @@ items: source: remote: path: VintagestoryApi/Server/API/ICoreServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Network path: Server/API/ICoreServerAPI.cs startLine: 45 @@ -312,8 +312,8 @@ items: source: remote: path: VintagestoryApi/Server/API/ICoreServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: World path: Server/API/ICoreServerAPI.cs startLine: 51 @@ -343,8 +343,8 @@ items: source: remote: path: VintagestoryApi/Server/API/ICoreServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SendIngameError path: Server/API/ICoreServerAPI.cs startLine: 62 @@ -387,8 +387,8 @@ items: source: remote: path: VintagestoryApi/Server/API/ICoreServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SendIngameDiscovery path: Server/API/ICoreServerAPI.cs startLine: 73 @@ -431,8 +431,8 @@ items: source: remote: path: VintagestoryApi/Server/API/ICoreServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SendMessage path: Server/API/ICoreServerAPI.cs startLine: 84 @@ -478,8 +478,8 @@ items: source: remote: path: VintagestoryApi/Server/API/ICoreServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SendMessageToGroup path: Server/API/ICoreServerAPI.cs startLine: 94 @@ -522,8 +522,8 @@ items: source: remote: path: VintagestoryApi/Server/API/ICoreServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BroadcastMessageToAllGroups path: Server/API/ICoreServerAPI.cs startLine: 102 @@ -563,8 +563,8 @@ items: source: remote: path: VintagestoryApi/Server/API/ICoreServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InjectConsole path: Server/API/ICoreServerAPI.cs startLine: 108 @@ -598,8 +598,8 @@ items: source: remote: path: VintagestoryApi/Server/API/ICoreServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HandleCommand path: Server/API/ICoreServerAPI.cs startLine: 115 @@ -648,8 +648,8 @@ items: source: remote: path: VintagestoryApi/Server/API/ICoreServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterItem path: Server/API/ICoreServerAPI.cs startLine: 124 @@ -680,8 +680,8 @@ items: source: remote: path: VintagestoryApi/Server/API/ICoreServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterBlock path: Server/API/ICoreServerAPI.cs startLine: 130 @@ -712,8 +712,8 @@ items: source: remote: path: VintagestoryApi/Server/API/ICoreServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterCraftingRecipe path: Server/API/ICoreServerAPI.cs startLine: 136 @@ -744,8 +744,8 @@ items: source: remote: path: VintagestoryApi/Server/API/ICoreServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterTreeGenerator path: Server/API/ICoreServerAPI.cs startLine: 144 @@ -779,8 +779,8 @@ items: source: remote: path: VintagestoryApi/Server/API/ICoreServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterTreeGenerator path: Server/API/ICoreServerAPI.cs startLine: 151 @@ -814,8 +814,8 @@ items: source: remote: path: VintagestoryApi/Server/API/ICoreServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterCommand path: Server/API/ICoreServerAPI.cs startLine: 159 @@ -861,8 +861,8 @@ items: source: remote: path: VintagestoryApi/Server/API/ICoreServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterCommand path: Server/API/ICoreServerAPI.cs startLine: 171 @@ -923,8 +923,8 @@ items: source: remote: path: VintagestoryApi/Server/API/ICoreServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TriggerOnAssetsFirstLoaded path: Server/API/ICoreServerAPI.cs startLine: 177 diff --git a/api/Vintagestory.API.Server.IGroupManager.yml b/api/Vintagestory.API.Server.IGroupManager.yml index eee0a4bf..fe8d89a3 100644 --- a/api/Vintagestory.API.Server.IGroupManager.yml +++ b/api/Vintagestory.API.Server.IGroupManager.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IPlayerDataManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IGroupManager path: Server/API/IPlayerDataManager.cs startLine: 50 @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IPlayerDataManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerGroupsById path: Server/API/IPlayerDataManager.cs startLine: 52 @@ -73,8 +73,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IPlayerDataManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetPlayerGroupByName path: Server/API/IPlayerDataManager.cs startLine: 54 @@ -107,8 +107,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IPlayerDataManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddPlayerGroup path: Server/API/IPlayerDataManager.cs startLine: 56 @@ -136,8 +136,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IPlayerDataManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemovePlayerGroup path: Server/API/IPlayerDataManager.cs startLine: 58 diff --git a/api/Vintagestory.API.Server.INetworkMessage.yml b/api/Vintagestory.API.Server.INetworkMessage.yml index 0fc10e4a..2aa3d41d 100644 --- a/api/Vintagestory.API.Server.INetworkMessage.yml +++ b/api/Vintagestory.API.Server.INetworkMessage.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerNetworkChannel.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: INetworkMessage path: Server/API/IServerNetworkChannel.cs startLine: 8 diff --git a/api/Vintagestory.API.Server.IPermissionManager.yml b/api/Vintagestory.API.Server.IPermissionManager.yml index 4901b18a..f9c651c1 100644 --- a/api/Vintagestory.API.Server.IPermissionManager.yml +++ b/api/Vintagestory.API.Server.IPermissionManager.yml @@ -28,8 +28,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IPlayerDataManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IPermissionManager path: Server/API/IPlayerDataManager.cs startLine: 61 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IPlayerDataManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRole path: Server/API/IPlayerDataManager.cs startLine: 68 @@ -91,8 +91,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IPlayerDataManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetRole path: Server/API/IPlayerDataManager.cs startLine: 75 @@ -126,8 +126,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IPlayerDataManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetRole path: Server/API/IPlayerDataManager.cs startLine: 82 @@ -164,8 +164,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IPlayerDataManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterPrivilege path: Server/API/IPlayerDataManager.cs startLine: 92 @@ -208,8 +208,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IPlayerDataManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GrantTemporaryPrivilege path: Server/API/IPlayerDataManager.cs startLine: 98 @@ -243,8 +243,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IPlayerDataManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DropTemporaryPrivilege path: Server/API/IPlayerDataManager.cs startLine: 104 @@ -278,8 +278,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IPlayerDataManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GrantPrivilege path: Server/API/IPlayerDataManager.cs startLine: 114 @@ -322,8 +322,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IPlayerDataManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DenyPrivilege path: Server/API/IPlayerDataManager.cs startLine: 122 @@ -363,8 +363,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IPlayerDataManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemovePrivilegeDenial path: Server/API/IPlayerDataManager.cs startLine: 130 @@ -404,8 +404,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IPlayerDataManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RevokePrivilege path: Server/API/IPlayerDataManager.cs startLine: 139 @@ -448,8 +448,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IPlayerDataManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddPrivilegeToGroup path: Server/API/IPlayerDataManager.cs startLine: 147 @@ -489,8 +489,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IPlayerDataManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemovePrivilegeFromGroup path: Server/API/IPlayerDataManager.cs startLine: 155 @@ -530,8 +530,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IPlayerDataManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetPlayerPermissionLevel path: Server/API/IPlayerDataManager.cs startLine: 163 diff --git a/api/Vintagestory.API.Server.IPlayerDataManager.yml b/api/Vintagestory.API.Server.IPlayerDataManager.yml index f411e6e1..0376da39 100644 --- a/api/Vintagestory.API.Server.IPlayerDataManager.yml +++ b/api/Vintagestory.API.Server.IPlayerDataManager.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IPlayerDataManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IPlayerDataManager path: Server/API/IPlayerDataManager.cs startLine: 14 @@ -45,8 +45,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IPlayerDataManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerDataByUid path: Server/API/IPlayerDataManager.cs startLine: 19 @@ -76,8 +76,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IPlayerDataManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetPlayerDataByUid path: Server/API/IPlayerDataManager.cs startLine: 26 @@ -114,8 +114,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IPlayerDataManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetPlayerDataByLastKnownName path: Server/API/IPlayerDataManager.cs startLine: 32 @@ -152,8 +152,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IPlayerDataManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ResolvePlayerName path: Server/API/IPlayerDataManager.cs startLine: 39 @@ -190,8 +190,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IPlayerDataManager.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ResolvePlayerUid path: Server/API/IPlayerDataManager.cs startLine: 47 diff --git a/api/Vintagestory.API.Server.ISaveGame.yml b/api/Vintagestory.API.Server.ISaveGame.yml index 4a2404b4..76689871 100644 --- a/api/Vintagestory.API.Server.ISaveGame.yml +++ b/api/Vintagestory.API.Server.ISaveGame.yml @@ -31,8 +31,8 @@ items: source: remote: path: VintagestoryApi/Server/ISaveGame.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ISaveGame path: Server/ISaveGame.cs startLine: 7 @@ -56,8 +56,8 @@ items: source: remote: path: VintagestoryApi/Server/ISaveGame.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsNew path: Server/ISaveGame.cs startLine: 12 @@ -87,8 +87,8 @@ items: source: remote: path: VintagestoryApi/Server/ISaveGame.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreatedGameVersion path: Server/ISaveGame.cs startLine: 17 @@ -118,8 +118,8 @@ items: source: remote: path: VintagestoryApi/Server/ISaveGame.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LastSavedGameVersion path: Server/ISaveGame.cs startLine: 22 @@ -149,8 +149,8 @@ items: source: remote: path: VintagestoryApi/Server/ISaveGame.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Seed path: Server/ISaveGame.cs startLine: 24 @@ -178,8 +178,8 @@ items: source: remote: path: VintagestoryApi/Server/ISaveGame.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SavegameIdentifier path: Server/ISaveGame.cs startLine: 29 @@ -209,8 +209,8 @@ items: source: remote: path: VintagestoryApi/Server/ISaveGame.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TotalGameSeconds path: Server/ISaveGame.cs startLine: 31 @@ -238,8 +238,8 @@ items: source: remote: path: VintagestoryApi/Server/ISaveGame.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WorldName path: Server/ISaveGame.cs startLine: 32 @@ -267,8 +267,8 @@ items: source: remote: path: VintagestoryApi/Server/ISaveGame.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayStyle path: Server/ISaveGame.cs startLine: 34 @@ -296,8 +296,8 @@ items: source: remote: path: VintagestoryApi/Server/ISaveGame.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WorldType path: Server/ISaveGame.cs startLine: 35 @@ -325,8 +325,8 @@ items: source: remote: path: VintagestoryApi/Server/ISaveGame.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntitySpawning path: Server/ISaveGame.cs startLine: 36 @@ -354,8 +354,8 @@ items: source: remote: path: VintagestoryApi/Server/ISaveGame.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LandClaims path: Server/ISaveGame.cs startLine: 37 @@ -383,8 +383,8 @@ items: source: remote: path: VintagestoryApi/Server/ISaveGame.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WorldConfiguration path: Server/ISaveGame.cs startLine: 39 @@ -412,8 +412,8 @@ items: source: remote: path: VintagestoryApi/Server/ISaveGame.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetData path: Server/ISaveGame.cs startLine: 46 @@ -450,8 +450,8 @@ items: source: remote: path: VintagestoryApi/Server/ISaveGame.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StoreData path: Server/ISaveGame.cs startLine: 53 @@ -488,8 +488,8 @@ items: source: remote: path: VintagestoryApi/Server/ISaveGame.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetData path: Server/ISaveGame.cs startLine: 63 @@ -532,8 +532,8 @@ items: source: remote: path: VintagestoryApi/Server/ISaveGame.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StoreData path: Server/ISaveGame.cs startLine: 71 diff --git a/api/Vintagestory.API.Server.IServerAPI.yml b/api/Vintagestory.API.Server.IServerAPI.yml index 13614d28..4d79ab91 100644 --- a/api/Vintagestory.API.Server.IServerAPI.yml +++ b/api/Vintagestory.API.Server.IServerAPI.yml @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IServerAPI path: Server/API/IServerAPI.cs startLine: 7 @@ -70,8 +70,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ServerIp path: Server/API/IServerAPI.cs startLine: 12 @@ -101,8 +101,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Players path: Server/API/IServerAPI.cs startLine: 17 @@ -132,8 +132,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Config path: Server/API/IServerAPI.cs startLine: 22 @@ -163,8 +163,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MarkConfigDirty path: Server/API/IServerAPI.cs startLine: 27 @@ -191,8 +191,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentRunPhase path: Server/API/IServerAPI.cs startLine: 34 @@ -223,8 +223,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsDedicated path: Server/API/IServerAPI.cs startLine: 40 @@ -255,8 +255,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsShuttingDown path: Server/API/IServerAPI.cs startLine: 49 @@ -292,8 +292,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ShutDown path: Server/API/IServerAPI.cs startLine: 55 @@ -320,8 +320,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddServerThread path: Server/API/IServerAPI.cs startLine: 62 @@ -358,8 +358,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PauseThread path: Server/API/IServerAPI.cs startLine: 70 @@ -399,8 +399,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ResumeThread path: Server/API/IServerAPI.cs startLine: 76 @@ -434,8 +434,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TotalReceivedBytes path: Server/API/IServerAPI.cs startLine: 79 @@ -463,8 +463,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TotalSentBytes path: Server/API/IServerAPI.cs startLine: 80 @@ -492,8 +492,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ServerUptimeSeconds path: Server/API/IServerAPI.cs startLine: 86 @@ -524,8 +524,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ServerUptimeMilliseconds path: Server/API/IServerAPI.cs startLine: 92 @@ -556,8 +556,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TotalWorldPlayTime path: Server/API/IServerAPI.cs startLine: 97 @@ -587,8 +587,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Logger path: Server/API/IServerAPI.cs startLine: 104 @@ -619,8 +619,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LogChat path: Server/API/IServerAPI.cs startLine: 112 @@ -657,8 +657,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LogBuild path: Server/API/IServerAPI.cs startLine: 120 @@ -695,8 +695,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LogVerboseDebug path: Server/API/IServerAPI.cs startLine: 127 @@ -733,8 +733,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LogDebug path: Server/API/IServerAPI.cs startLine: 134 @@ -771,8 +771,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LogNotification path: Server/API/IServerAPI.cs startLine: 141 @@ -809,8 +809,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LogWarning path: Server/API/IServerAPI.cs startLine: 148 @@ -847,8 +847,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LogError path: Server/API/IServerAPI.cs startLine: 155 @@ -885,8 +885,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LogFatal path: Server/API/IServerAPI.cs startLine: 162 @@ -923,8 +923,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LogEvent path: Server/API/IServerAPI.cs startLine: 169 @@ -961,8 +961,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadMiniDimension path: Server/API/IServerAPI.cs startLine: 175 @@ -997,8 +997,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetMiniDimension path: Server/API/IServerAPI.cs startLine: 180 diff --git a/api/Vintagestory.API.Server.IServerChunk.yml b/api/Vintagestory.API.Server.IServerChunk.yml index 3f64ca72..6b73ac9f 100644 --- a/api/Vintagestory.API.Server.IServerChunk.yml +++ b/api/Vintagestory.API.Server.IServerChunk.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IServerChunk path: Server/API/IServerChunk.cs startLine: 8 @@ -92,8 +92,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetServerModdata path: Server/API/IServerChunk.cs startLine: 15 @@ -130,8 +130,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetServerModdata path: Server/API/IServerChunk.cs startLine: 22 @@ -168,8 +168,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GameVersionCreated path: Server/API/IServerChunk.cs startLine: 27 @@ -199,8 +199,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NotAtEdge path: Server/API/IServerChunk.cs startLine: 32 @@ -230,8 +230,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveBlockEntity path: Server/API/IServerChunk.cs startLine: 37 @@ -263,8 +263,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlocksPlaced path: Server/API/IServerChunk.cs startLine: 42 @@ -294,8 +294,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerChunk.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlocksRemoved path: Server/API/IServerChunk.cs startLine: 47 diff --git a/api/Vintagestory.API.Server.IServerConfig.yml b/api/Vintagestory.API.Server.IServerConfig.yml index 6a1eedc9..df841ace 100644 --- a/api/Vintagestory.API.Server.IServerConfig.yml +++ b/api/Vintagestory.API.Server.IServerConfig.yml @@ -37,8 +37,8 @@ items: source: remote: path: VintagestoryApi/Server/IServerConfig.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IServerConfig path: Server/IServerConfig.cs startLine: 8 @@ -64,8 +64,8 @@ items: source: remote: path: VintagestoryApi/Server/IServerConfig.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Port path: Server/IServerConfig.cs startLine: 13 @@ -95,8 +95,8 @@ items: source: remote: path: VintagestoryApi/Server/IServerConfig.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ServerName path: Server/IServerConfig.cs startLine: 18 @@ -126,8 +126,8 @@ items: source: remote: path: VintagestoryApi/Server/IServerConfig.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WelcomeMessage path: Server/IServerConfig.cs startLine: 23 @@ -157,8 +157,8 @@ items: source: remote: path: VintagestoryApi/Server/IServerConfig.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxClients path: Server/IServerConfig.cs startLine: 27 @@ -188,8 +188,8 @@ items: source: remote: path: VintagestoryApi/Server/IServerConfig.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Password path: Server/IServerConfig.cs startLine: 31 @@ -219,8 +219,8 @@ items: source: remote: path: VintagestoryApi/Server/IServerConfig.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxChunkRadius path: Server/IServerConfig.cs startLine: 35 @@ -250,8 +250,8 @@ items: source: remote: path: VintagestoryApi/Server/IServerConfig.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TickTime path: Server/IServerConfig.cs startLine: 39 @@ -281,8 +281,8 @@ items: source: remote: path: VintagestoryApi/Server/IServerConfig.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockTickChunkRange path: Server/IServerConfig.cs startLine: 43 @@ -312,8 +312,8 @@ items: source: remote: path: VintagestoryApi/Server/IServerConfig.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MaxMainThreadBlockTicks path: Server/IServerConfig.cs startLine: 48 @@ -343,8 +343,8 @@ items: source: remote: path: VintagestoryApi/Server/IServerConfig.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RandomBlockTicksPerChunk path: Server/IServerConfig.cs startLine: 53 @@ -374,8 +374,8 @@ items: source: remote: path: VintagestoryApi/Server/IServerConfig.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BlockTickInterval path: Server/IServerConfig.cs startLine: 58 @@ -405,8 +405,8 @@ items: source: remote: path: VintagestoryApi/Server/IServerConfig.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Roles path: Server/IServerConfig.cs startLine: 63 @@ -436,8 +436,8 @@ items: source: remote: path: VintagestoryApi/Server/IServerConfig.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DefaultRoleCode path: Server/IServerConfig.cs startLine: 68 @@ -467,8 +467,8 @@ items: source: remote: path: VintagestoryApi/Server/IServerConfig.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AntiAbuse path: Server/IServerConfig.cs startLine: 73 @@ -498,8 +498,8 @@ items: source: remote: path: VintagestoryApi/Server/IServerConfig.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnlyWhitelisted path: Server/IServerConfig.cs startLine: 78 @@ -529,8 +529,8 @@ items: source: remote: path: VintagestoryApi/Server/IServerConfig.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DefaultSpawn path: Server/IServerConfig.cs startLine: 83 @@ -560,8 +560,8 @@ items: source: remote: path: VintagestoryApi/Server/IServerConfig.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AllowPvP path: Server/IServerConfig.cs startLine: 88 @@ -591,8 +591,8 @@ items: source: remote: path: VintagestoryApi/Server/IServerConfig.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AllowFireSpread path: Server/IServerConfig.cs startLine: 93 @@ -622,8 +622,8 @@ items: source: remote: path: VintagestoryApi/Server/IServerConfig.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AllowFallingBlocks path: Server/IServerConfig.cs startLine: 98 @@ -653,8 +653,8 @@ items: source: remote: path: VintagestoryApi/Server/IServerConfig.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HostedMode path: Server/IServerConfig.cs startLine: 103 @@ -684,8 +684,8 @@ items: source: remote: path: VintagestoryApi/Server/IServerConfig.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HostedModeAllowMods path: Server/IServerConfig.cs startLine: 108 @@ -715,8 +715,8 @@ items: source: remote: path: VintagestoryApi/Server/IServerConfig.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SpawnCapPlayerScaling path: Server/IServerConfig.cs startLine: 110 diff --git a/api/Vintagestory.API.Server.IServerEventAPI.yml b/api/Vintagestory.API.Server.IServerEventAPI.yml index 89657743..b4070e66 100644 --- a/api/Vintagestory.API.Server.IServerEventAPI.yml +++ b/api/Vintagestory.API.Server.IServerEventAPI.yml @@ -55,8 +55,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IServerEventAPI path: Server/API/IServerEventAPI.cs startLine: 10 @@ -107,8 +107,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetRegisteredWorldGenHandlers path: Server/API/IServerEventAPI.cs startLine: 18 @@ -148,8 +148,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TriggerTrySpawnEntity path: Server/API/IServerEventAPI.cs startLine: 21 @@ -188,8 +188,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetWorldgenBlockAccessor path: Server/API/IServerEventAPI.cs startLine: 27 @@ -220,8 +220,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InitWorldGenerator path: Server/API/IServerEventAPI.cs startLine: 34 @@ -258,8 +258,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MapChunkGeneration path: Server/API/IServerEventAPI.cs startLine: 41 @@ -296,8 +296,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MapRegionGeneration path: Server/API/IServerEventAPI.cs startLine: 48 @@ -334,8 +334,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChunkColumnGeneration path: Server/API/IServerEventAPI.cs startLine: 56 @@ -375,8 +375,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WorldgenHook path: Server/API/IServerEventAPI.cs startLine: 61 @@ -413,8 +413,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TriggerWorldgenHook path: Server/API/IServerEventAPI.cs startLine: 65 @@ -453,8 +453,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeginChunkColumnLoadChunkThread path: Server/API/IServerEventAPI.cs startLine: 70 @@ -482,8 +482,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChunkColumnLoaded path: Server/API/IServerEventAPI.cs startLine: 75 @@ -511,8 +511,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChunkColumnUnloaded path: Server/API/IServerEventAPI.cs startLine: 80 @@ -540,8 +540,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanUseBlock path: Server/API/IServerEventAPI.cs startLine: 88 @@ -569,8 +569,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnTrySpawnEntity path: Server/API/IServerEventAPI.cs startLine: 93 @@ -598,8 +598,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnPlayerInteractEntity path: Server/API/IServerEventAPI.cs startLine: 98 @@ -627,8 +627,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerCreate path: Server/API/IServerEventAPI.cs startLine: 103 @@ -656,8 +656,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerRespawn path: Server/API/IServerEventAPI.cs startLine: 108 @@ -685,8 +685,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerJoin path: Server/API/IServerEventAPI.cs startLine: 113 @@ -714,8 +714,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerNowPlaying path: Server/API/IServerEventAPI.cs startLine: 118 @@ -743,8 +743,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerLeave path: Server/API/IServerEventAPI.cs startLine: 123 @@ -772,8 +772,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerDisconnect path: Server/API/IServerEventAPI.cs startLine: 128 @@ -801,8 +801,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerChat path: Server/API/IServerEventAPI.cs startLine: 133 @@ -830,8 +830,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerDeath path: Server/API/IServerEventAPI.cs startLine: 138 @@ -859,8 +859,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerSwitchGameMode path: Server/API/IServerEventAPI.cs startLine: 143 @@ -888,8 +888,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeforeActiveSlotChanged path: Server/API/IServerEventAPI.cs startLine: 149 @@ -920,8 +920,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AfterActiveSlotChanged path: Server/API/IServerEventAPI.cs startLine: 154 @@ -949,8 +949,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AssetsFinalizers path: Server/API/IServerEventAPI.cs startLine: 161 @@ -993,8 +993,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SaveGameLoaded path: Server/API/IServerEventAPI.cs startLine: 168 @@ -1027,8 +1027,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SaveGameCreated path: Server/API/IServerEventAPI.cs startLine: 173 @@ -1056,8 +1056,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WorldgenStartup path: Server/API/IServerEventAPI.cs startLine: 178 @@ -1085,8 +1085,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GameWorldSave path: Server/API/IServerEventAPI.cs startLine: 183 @@ -1114,8 +1114,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ServerSuspend path: Server/API/IServerEventAPI.cs startLine: 188 @@ -1143,8 +1143,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ServerResume path: Server/API/IServerEventAPI.cs startLine: 193 @@ -1172,8 +1172,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ServerRunPhase path: Server/API/IServerEventAPI.cs startLine: 200 @@ -1207,8 +1207,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Timer path: Server/API/IServerEventAPI.cs startLine: 207 @@ -1245,8 +1245,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DidPlaceBlock path: Server/API/IServerEventAPI.cs startLine: 212 @@ -1274,8 +1274,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanPlaceOrBreakBlock path: Server/API/IServerEventAPI.cs startLine: 217 @@ -1303,8 +1303,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BreakBlock path: Server/API/IServerEventAPI.cs startLine: 222 @@ -1332,8 +1332,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DidBreakBlock path: Server/API/IServerEventAPI.cs startLine: 227 @@ -1361,8 +1361,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerEventAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DidUseBlock path: Server/API/IServerEventAPI.cs startLine: 232 diff --git a/api/Vintagestory.API.Server.IServerNetworkAPI.yml b/api/Vintagestory.API.Server.IServerNetworkAPI.yml index 522245e9..882035bd 100644 --- a/api/Vintagestory.API.Server.IServerNetworkAPI.yml +++ b/api/Vintagestory.API.Server.IServerNetworkAPI.yml @@ -25,8 +25,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerNetworkAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IServerNetworkAPI path: Server/API/IServerNetworkAPI.cs startLine: 8 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerNetworkAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterChannel path: Server/API/IServerNetworkAPI.cs startLine: 15 @@ -90,8 +90,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerNetworkAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetChannel path: Server/API/IServerNetworkAPI.cs startLine: 22 @@ -128,8 +128,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerNetworkAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SendBlockEntityPacket path: Server/API/IServerNetworkAPI.cs startLine: 33 @@ -178,8 +178,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerNetworkAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SendEntityPacket path: Server/API/IServerNetworkAPI.cs startLine: 42 @@ -222,8 +222,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerNetworkAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BroadcastEntityPacket path: Server/API/IServerNetworkAPI.cs startLine: 51 @@ -263,8 +263,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerNetworkAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BroadcastBlockEntityPacket path: Server/API/IServerNetworkAPI.cs startLine: 62 @@ -310,8 +310,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerNetworkAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SendArbitraryPacket path: Server/API/IServerNetworkAPI.cs startLine: 70 @@ -348,8 +348,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerNetworkAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BroadcastArbitraryPacket path: Server/API/IServerNetworkAPI.cs startLine: 77 @@ -386,8 +386,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerNetworkAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SendBlockEntityPacket path: Server/API/IServerNetworkAPI.cs startLine: 88 @@ -433,8 +433,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerNetworkAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BroadcastBlockEntityPacket path: Server/API/IServerNetworkAPI.cs startLine: 97 diff --git a/api/Vintagestory.API.Server.IServerNetworkChannel.yml b/api/Vintagestory.API.Server.IServerNetworkChannel.yml index 49860d6e..ada5c6b8 100644 --- a/api/Vintagestory.API.Server.IServerNetworkChannel.yml +++ b/api/Vintagestory.API.Server.IServerNetworkChannel.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerNetworkChannel.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IServerNetworkChannel path: Server/API/IServerNetworkChannel.cs startLine: 22 @@ -50,8 +50,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerNetworkChannel.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterMessageType path: Server/API/IServerNetworkChannel.cs startLine: 28 @@ -84,8 +84,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerNetworkChannel.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegisterMessageType path: Server/API/IServerNetworkChannel.cs startLine: 35 @@ -121,8 +121,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerNetworkChannel.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetMessageHandler path: Server/API/IServerNetworkChannel.cs startLine: 42 @@ -161,8 +161,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerNetworkChannel.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SendPacket path: Server/API/IServerNetworkChannel.cs startLine: 49 @@ -201,8 +201,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerNetworkChannel.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SendPacket path: Server/API/IServerNetworkChannel.cs startLine: 57 @@ -244,8 +244,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerNetworkChannel.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BroadcastPacket path: Server/API/IServerNetworkChannel.cs startLine: 64 diff --git a/api/Vintagestory.API.Server.IServerPhysicsTicker.yml b/api/Vintagestory.API.Server.IServerPhysicsTicker.yml index 15649820..cda60b8c 100644 --- a/api/Vintagestory.API.Server.IServerPhysicsTicker.yml +++ b/api/Vintagestory.API.Server.IServerPhysicsTicker.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerPhysicsTicker.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IServerPhysicsTicker path: Server/API/IServerPhysicsTicker.cs startLine: 2 @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerPhysicsTicker.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FlagDoneTick path: Server/API/IServerPhysicsTicker.cs startLine: 4 @@ -72,8 +72,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerPhysicsTicker.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: onPhysicsTickServer path: Server/API/IServerPhysicsTicker.cs startLine: 6 @@ -104,8 +104,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerPhysicsTicker.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AfterPhysicsTick path: Server/API/IServerPhysicsTicker.cs startLine: 7 diff --git a/api/Vintagestory.API.Server.IServerPlayer.yml b/api/Vintagestory.API.Server.IServerPlayer.yml index 32de6841..7f2efac0 100644 --- a/api/Vintagestory.API.Server.IServerPlayer.yml +++ b/api/Vintagestory.API.Server.IServerPlayer.yml @@ -39,8 +39,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IServerPlayer path: Server/API/IServerPlayer.cs startLine: 8 @@ -83,8 +83,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InWorldAction path: Server/API/IServerPlayer.cs startLine: 10 @@ -110,8 +110,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ItemCollectMode path: Server/API/IServerPlayer.cs startLine: 12 @@ -139,8 +139,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentChunkSentRadius path: Server/API/IServerPlayer.cs startLine: 17 @@ -170,8 +170,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ConnectionState path: Server/API/IServerPlayer.cs startLine: 22 @@ -201,8 +201,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IpAddress path: Server/API/IServerPlayer.cs startLine: 27 @@ -232,8 +232,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LanguageCode path: Server/API/IServerPlayer.cs startLine: 32 @@ -263,8 +263,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Ping path: Server/API/IServerPlayer.cs startLine: 37 @@ -294,8 +294,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ServerData path: Server/API/IServerPlayer.cs startLine: 42 @@ -325,8 +325,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BroadcastPlayerData path: Server/API/IServerPlayer.cs startLine: 48 @@ -359,8 +359,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Disconnect path: Server/API/IServerPlayer.cs startLine: 54 @@ -387,8 +387,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Disconnect path: Server/API/IServerPlayer.cs startLine: 60 @@ -422,8 +422,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SendIngameError path: Server/API/IServerPlayer.cs startLine: 68 @@ -463,8 +463,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SendMessage path: Server/API/IServerPlayer.cs startLine: 78 @@ -507,8 +507,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SendLocalisedMessage path: Server/API/IServerPlayer.cs startLine: 87 @@ -551,8 +551,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetRole path: Server/API/IServerPlayer.cs startLine: 93 @@ -586,8 +586,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetSpawnPosition path: Server/API/IServerPlayer.cs startLine: 99 @@ -618,8 +618,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ClearSpawnPosition path: Server/API/IServerPlayer.cs startLine: 104 @@ -646,8 +646,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSpawnPosition path: Server/API/IServerPlayer.cs startLine: 115 @@ -691,8 +691,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SendPositionToClient path: Server/API/IServerPlayer.cs startLine: 121 @@ -719,8 +719,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetModData path: Server/API/IServerPlayer.cs startLine: 124 @@ -755,8 +755,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetModData path: Server/API/IServerPlayer.cs startLine: 125 @@ -793,8 +793,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetModdata path: Server/API/IServerPlayer.cs startLine: 133 @@ -831,8 +831,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveModdata path: Server/API/IServerPlayer.cs startLine: 139 @@ -866,8 +866,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerPlayer.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetModdata path: Server/API/IServerPlayer.cs startLine: 146 diff --git a/api/Vintagestory.API.Server.IServerPlayerData.yml b/api/Vintagestory.API.Server.IServerPlayerData.yml index d1815f9d..bc6f1958 100644 --- a/api/Vintagestory.API.Server.IServerPlayerData.yml +++ b/api/Vintagestory.API.Server.IServerPlayerData.yml @@ -25,8 +25,8 @@ items: source: remote: path: VintagestoryApi/Server/IServerPlayerData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IServerPlayerData path: Server/IServerPlayerData.cs startLine: 8 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Server/IServerPlayerData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerUID path: Server/IServerPlayerData.cs startLine: 13 @@ -83,8 +83,8 @@ items: source: remote: path: VintagestoryApi/Server/IServerPlayerData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RoleCode path: Server/IServerPlayerData.cs startLine: 17 @@ -114,8 +114,8 @@ items: source: remote: path: VintagestoryApi/Server/IServerPlayerData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PermaPrivileges path: Server/IServerPlayerData.cs startLine: 21 @@ -145,8 +145,8 @@ items: source: remote: path: VintagestoryApi/Server/IServerPlayerData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DeniedPrivileges path: Server/IServerPlayerData.cs startLine: 25 @@ -176,8 +176,8 @@ items: source: remote: path: VintagestoryApi/Server/IServerPlayerData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerGroupMemberships path: Server/IServerPlayerData.cs startLine: 29 @@ -207,8 +207,8 @@ items: source: remote: path: VintagestoryApi/Server/IServerPlayerData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AllowInvite path: Server/IServerPlayerData.cs startLine: 33 @@ -238,8 +238,8 @@ items: source: remote: path: VintagestoryApi/Server/IServerPlayerData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LastKnownPlayername path: Server/IServerPlayerData.cs startLine: 37 @@ -269,8 +269,8 @@ items: source: remote: path: VintagestoryApi/Server/IServerPlayerData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CustomPlayerData path: Server/IServerPlayerData.cs startLine: 42 @@ -300,8 +300,8 @@ items: source: remote: path: VintagestoryApi/Server/IServerPlayerData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExtraLandClaimAllowance path: Server/IServerPlayerData.cs startLine: 47 @@ -331,8 +331,8 @@ items: source: remote: path: VintagestoryApi/Server/IServerPlayerData.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ExtraLandClaimAreas path: Server/IServerPlayerData.cs startLine: 52 diff --git a/api/Vintagestory.API.Server.IServerWorldAccessor.yml b/api/Vintagestory.API.Server.IServerWorldAccessor.yml index 57e4873a..aa2b6fab 100644 --- a/api/Vintagestory.API.Server.IServerWorldAccessor.yml +++ b/api/Vintagestory.API.Server.IServerWorldAccessor.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IServerWorldAccessor path: Server/API/IServerWorldAccessor.cs startLine: 12 @@ -135,8 +135,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadedEntities path: Server/API/IServerWorldAccessor.cs startLine: 19 @@ -171,8 +171,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DespawnEntity path: Server/API/IServerWorldAccessor.cs startLine: 26 @@ -206,8 +206,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateExplosion path: Server/API/IServerWorldAccessor.cs startLine: 36 @@ -253,8 +253,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TreeGenerators path: Server/API/IServerWorldAccessor.cs startLine: 41 @@ -284,8 +284,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemappedEntities path: Server/API/IServerWorldAccessor.cs startLine: 46 @@ -315,8 +315,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsFullyLoadedChunk path: Server/API/IServerWorldAccessor.cs startLine: 48 @@ -346,8 +346,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerWorldAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddPhysicsTick path: Server/API/IServerWorldAccessor.cs startLine: 53 diff --git a/api/Vintagestory.API.Server.ITreeGenerator.yml b/api/Vintagestory.API.Server.ITreeGenerator.yml index 81503fb9..d563b11b 100644 --- a/api/Vintagestory.API.Server.ITreeGenerator.yml +++ b/api/Vintagestory.API.Server.ITreeGenerator.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Server/ITreeGenerator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ITreeGenerator path: Server/ITreeGenerator.cs startLine: 7 @@ -41,8 +41,8 @@ items: source: remote: path: VintagestoryApi/Server/ITreeGenerator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GrowTree path: Server/ITreeGenerator.cs startLine: 9 diff --git a/api/Vintagestory.API.Server.IWorldGenBlockAccessor.yml b/api/Vintagestory.API.Server.IWorldGenBlockAccessor.yml index 4d498913..fc334b4f 100644 --- a/api/Vintagestory.API.Server.IWorldGenBlockAccessor.yml +++ b/api/Vintagestory.API.Server.IWorldGenBlockAccessor.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/IWorldGenBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IWorldGenBlockAccessor path: Server/Worldgen/IWorldGenBlockAccessor.cs startLine: 6 @@ -127,8 +127,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/IWorldGenBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WorldgenWorldAccessor path: Server/Worldgen/IWorldGenBlockAccessor.cs startLine: 11 @@ -158,8 +158,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/IWorldGenBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ScheduleBlockUpdate path: Server/Worldgen/IWorldGenBlockAccessor.cs startLine: 17 @@ -190,8 +190,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/IWorldGenBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ScheduleBlockLightUpdate path: Server/Worldgen/IWorldGenBlockAccessor.cs startLine: 25 @@ -231,8 +231,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/IWorldGenBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RunScheduledBlockLightUpdates path: Server/Worldgen/IWorldGenBlockAccessor.cs startLine: 30 @@ -259,8 +259,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/IWorldGenBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddEntity path: Server/Worldgen/IWorldGenBlockAccessor.cs startLine: 36 @@ -291,8 +291,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/IWorldGenBlockAccessor.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BeginColumn path: Server/Worldgen/IWorldGenBlockAccessor.cs startLine: 38 diff --git a/api/Vintagestory.API.Server.IWorldGenHandler.yml b/api/Vintagestory.API.Server.IWorldGenHandler.yml index d69b88b5..732dcfd6 100644 --- a/api/Vintagestory.API.Server.IWorldGenHandler.yml +++ b/api/Vintagestory.API.Server.IWorldGenHandler.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/IWorldGenHandler.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IWorldGenHandler path: Server/Worldgen/IWorldGenHandler.cs startLine: 5 @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/IWorldGenHandler.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMapRegionGen path: Server/Worldgen/IWorldGenHandler.cs startLine: 10 @@ -75,8 +75,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/IWorldGenHandler.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnMapChunkGen path: Server/Worldgen/IWorldGenHandler.cs startLine: 14 @@ -106,8 +106,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/IWorldGenHandler.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnChunkColumnGen path: Server/Worldgen/IWorldGenHandler.cs startLine: 18 @@ -137,8 +137,8 @@ items: source: remote: path: VintagestoryApi/Server/Worldgen/IWorldGenHandler.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WipeAllHandlers path: Server/Worldgen/IWorldGenHandler.cs startLine: 22 diff --git a/api/Vintagestory.API.Server.IWorldManagerAPI.yml b/api/Vintagestory.API.Server.IWorldManagerAPI.yml index 43d7bc81..a31c4064 100644 --- a/api/Vintagestory.API.Server.IWorldManagerAPI.yml +++ b/api/Vintagestory.API.Server.IWorldManagerAPI.yml @@ -77,8 +77,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IWorldManagerAPI path: Server/API/IWorldManagerAPI.cs startLine: 45 @@ -104,8 +104,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AllLoadedMapchunks path: Server/API/IWorldManagerAPI.cs startLine: 50 @@ -135,8 +135,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AllLoadedMapRegions path: Server/API/IWorldManagerAPI.cs startLine: 55 @@ -166,8 +166,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AllLoadedChunks path: Server/API/IWorldManagerAPI.cs startLine: 60 @@ -197,8 +197,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentGeneratingChunkCount path: Server/API/IWorldManagerAPI.cs startLine: 65 @@ -228,8 +228,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChunkDeletionsInQueue path: Server/API/IWorldManagerAPI.cs startLine: 67 @@ -257,8 +257,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SaveGame path: Server/API/IWorldManagerAPI.cs startLine: 72 @@ -288,8 +288,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentPlayStyle path: Server/API/IWorldManagerAPI.cs startLine: 77 @@ -319,8 +319,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetBlockLightLevels path: Server/API/IWorldManagerAPI.cs startLine: 83 @@ -354,8 +354,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetSunLightLevels path: Server/API/IWorldManagerAPI.cs startLine: 89 @@ -389,8 +389,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetSunBrightness path: Server/API/IWorldManagerAPI.cs startLine: 95 @@ -424,8 +424,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetSeaLevel path: Server/API/IWorldManagerAPI.cs startLine: 101 @@ -459,8 +459,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMapRegion path: Server/API/IWorldManagerAPI.cs startLine: 112 @@ -500,8 +500,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMapRegion path: Server/API/IWorldManagerAPI.cs startLine: 119 @@ -538,8 +538,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMapChunk path: Server/API/IWorldManagerAPI.cs startLine: 127 @@ -579,8 +579,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetMapChunk path: Server/API/IWorldManagerAPI.cs startLine: 134 @@ -617,8 +617,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetChunk path: Server/API/IWorldManagerAPI.cs startLine: 143 @@ -661,8 +661,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetChunk path: Server/API/IWorldManagerAPI.cs startLine: 150 @@ -696,8 +696,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChunkIndex3D path: Server/API/IWorldManagerAPI.cs startLine: 152 @@ -734,8 +734,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MapRegionIndex2D path: Server/API/IWorldManagerAPI.cs startLine: 153 @@ -770,8 +770,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MapRegionIndex2DByBlockPos path: Server/API/IWorldManagerAPI.cs startLine: 154 @@ -806,8 +806,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MapRegionPosFromIndex2D path: Server/API/IWorldManagerAPI.cs startLine: 155 @@ -840,8 +840,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MapChunkPosFromChunkIndex2D path: Server/API/IWorldManagerAPI.cs startLine: 157 @@ -874,8 +874,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MapChunkIndex2D path: Server/API/IWorldManagerAPI.cs startLine: 158 @@ -910,8 +910,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetChunk path: Server/API/IWorldManagerAPI.cs startLine: 165 @@ -948,8 +948,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetNextUniqueId path: Server/API/IWorldManagerAPI.cs startLine: 177 @@ -979,8 +979,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AutoGenerateChunks path: Server/API/IWorldManagerAPI.cs startLine: 182 @@ -1010,8 +1010,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SendChunks path: Server/API/IWorldManagerAPI.cs startLine: 187 @@ -1041,8 +1041,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadChunkColumnFast path: Server/API/IWorldManagerAPI.cs startLine: 196 @@ -1094,8 +1094,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadChunkColumnPriority path: Server/API/IWorldManagerAPI.cs startLine: 205 @@ -1135,8 +1135,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadChunkColumnFast path: Server/API/IWorldManagerAPI.cs startLine: 215 @@ -1194,8 +1194,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadChunkColumnPriority path: Server/API/IWorldManagerAPI.cs startLine: 226 @@ -1241,8 +1241,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LoadChunkColumn path: Server/API/IWorldManagerAPI.cs startLine: 234 @@ -1282,8 +1282,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PeekChunkColumn path: Server/API/IWorldManagerAPI.cs startLine: 243 @@ -1323,8 +1323,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TestChunkExists path: Server/API/IWorldManagerAPI.cs startLine: 253 @@ -1367,8 +1367,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TestMapChunkExists path: Server/API/IWorldManagerAPI.cs startLine: 261 @@ -1408,8 +1408,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TestMapRegionExists path: Server/API/IWorldManagerAPI.cs startLine: 269 @@ -1449,8 +1449,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BroadcastChunk path: Server/API/IWorldManagerAPI.cs startLine: 278 @@ -1493,8 +1493,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HasChunk path: Server/API/IWorldManagerAPI.cs startLine: 288 @@ -1540,8 +1540,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SendChunk path: Server/API/IWorldManagerAPI.cs startLine: 298 @@ -1587,8 +1587,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ResendMapChunk path: Server/API/IWorldManagerAPI.cs startLine: 307 @@ -1628,8 +1628,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UnloadChunkColumn path: Server/API/IWorldManagerAPI.cs startLine: 316 @@ -1666,8 +1666,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DeleteChunkColumn path: Server/API/IWorldManagerAPI.cs startLine: 323 @@ -1704,8 +1704,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DeleteMapRegion path: Server/API/IWorldManagerAPI.cs startLine: 330 @@ -1742,8 +1742,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MapSizeX path: Server/API/IWorldManagerAPI.cs startLine: 336 @@ -1774,8 +1774,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MapSizeY path: Server/API/IWorldManagerAPI.cs startLine: 342 @@ -1806,8 +1806,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MapSizeZ path: Server/API/IWorldManagerAPI.cs startLine: 348 @@ -1838,8 +1838,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetSurfacePosY path: Server/API/IWorldManagerAPI.cs startLine: 356 @@ -1879,8 +1879,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RegionSize path: Server/API/IWorldManagerAPI.cs startLine: 362 @@ -1911,8 +1911,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChunkSize path: Server/API/IWorldManagerAPI.cs startLine: 368 @@ -1943,8 +1943,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Seed path: Server/API/IWorldManagerAPI.cs startLine: 375 @@ -1975,8 +1975,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CurrentWorldName path: Server/API/IWorldManagerAPI.cs startLine: 384 @@ -2006,8 +2006,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DefaultSpawnPosition path: Server/API/IWorldManagerAPI.cs startLine: 391 @@ -2038,8 +2038,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetDefaultSpawnPosition path: Server/API/IWorldManagerAPI.cs startLine: 399 @@ -2079,8 +2079,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlockId path: Server/API/IWorldManagerAPI.cs startLine: 413 @@ -2114,8 +2114,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SunFloodChunkColumnForWorldGen path: Server/API/IWorldManagerAPI.cs startLine: 424 @@ -2155,8 +2155,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SunFloodChunkColumnNeighboursForWorldGen path: Server/API/IWorldManagerAPI.cs startLine: 432 @@ -2196,8 +2196,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FullRelight path: Server/API/IWorldManagerAPI.cs startLine: 440 @@ -2231,8 +2231,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlockAccessor path: Server/API/IWorldManagerAPI.cs startLine: 458 @@ -2290,8 +2290,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlockAccessorBulkUpdate path: Server/API/IWorldManagerAPI.cs startLine: 469 @@ -2346,8 +2346,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlockAccessorRevertable path: Server/API/IWorldManagerAPI.cs startLine: 480 @@ -2402,8 +2402,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetBlockAccessorPrefetch path: Server/API/IWorldManagerAPI.cs startLine: 489 @@ -2455,8 +2455,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetCachingBlockAccessor path: Server/API/IWorldManagerAPI.cs startLine: 499 diff --git a/api/Vintagestory.API.Server.MultiplayerServerEntry.yml b/api/Vintagestory.API.Server.MultiplayerServerEntry.yml index 5ba55144..ecf4f401 100644 --- a/api/Vintagestory.API.Server.MultiplayerServerEntry.yml +++ b/api/Vintagestory.API.Server.MultiplayerServerEntry.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Server/MultiplayerServerEntry.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MultiplayerServerEntry path: Server/MultiplayerServerEntry.cs startLine: 2 @@ -54,8 +54,8 @@ items: source: remote: path: VintagestoryApi/Server/MultiplayerServerEntry.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: index path: Server/MultiplayerServerEntry.cs startLine: 4 @@ -81,8 +81,8 @@ items: source: remote: path: VintagestoryApi/Server/MultiplayerServerEntry.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: name path: Server/MultiplayerServerEntry.cs startLine: 5 @@ -108,8 +108,8 @@ items: source: remote: path: VintagestoryApi/Server/MultiplayerServerEntry.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: host path: Server/MultiplayerServerEntry.cs startLine: 6 @@ -135,8 +135,8 @@ items: source: remote: path: VintagestoryApi/Server/MultiplayerServerEntry.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: password path: Server/MultiplayerServerEntry.cs startLine: 7 diff --git a/api/Vintagestory.API.Server.NetworkClientMessageHandler-1.yml b/api/Vintagestory.API.Server.NetworkClientMessageHandler-1.yml index db2b2daf..1a37894b 100644 --- a/api/Vintagestory.API.Server.NetworkClientMessageHandler-1.yml +++ b/api/Vintagestory.API.Server.NetworkClientMessageHandler-1.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IServerNetworkChannel.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NetworkClientMessageHandler path: Server/API/IServerNetworkChannel.cs startLine: 16 diff --git a/api/Vintagestory.API.Server.OnChunkPeekedDelegate.yml b/api/Vintagestory.API.Server.OnChunkPeekedDelegate.yml index eee92307..3b2274bf 100644 --- a/api/Vintagestory.API.Server.OnChunkPeekedDelegate.yml +++ b/api/Vintagestory.API.Server.OnChunkPeekedDelegate.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Server/API/IWorldManagerAPI.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnChunkPeekedDelegate path: Server/API/IWorldManagerAPI.cs startLine: 24 diff --git a/api/Vintagestory.API.Server.PathfinderTask.yml b/api/Vintagestory.API.Server.PathfinderTask.yml index 90302c76..80e6df73 100644 --- a/api/Vintagestory.API.Server.PathfinderTask.yml +++ b/api/Vintagestory.API.Server.PathfinderTask.yml @@ -25,8 +25,8 @@ items: source: remote: path: VintagestoryApi/Server/PathfinderTask.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PathfinderTask path: Server/PathfinderTask.cs startLine: 5 @@ -60,8 +60,8 @@ items: source: remote: path: VintagestoryApi/Server/PathfinderTask.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: startBlockPos path: Server/PathfinderTask.cs startLine: 7 @@ -87,8 +87,8 @@ items: source: remote: path: VintagestoryApi/Server/PathfinderTask.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: targetBlockPos path: Server/PathfinderTask.cs startLine: 8 @@ -114,8 +114,8 @@ items: source: remote: path: VintagestoryApi/Server/PathfinderTask.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: maxFallHeight path: Server/PathfinderTask.cs startLine: 9 @@ -141,8 +141,8 @@ items: source: remote: path: VintagestoryApi/Server/PathfinderTask.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: stepHeight path: Server/PathfinderTask.cs startLine: 10 @@ -168,8 +168,8 @@ items: source: remote: path: VintagestoryApi/Server/PathfinderTask.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: collisionBox path: Server/PathfinderTask.cs startLine: 11 @@ -195,8 +195,8 @@ items: source: remote: path: VintagestoryApi/Server/PathfinderTask.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: searchDepth path: Server/PathfinderTask.cs startLine: 12 @@ -222,8 +222,8 @@ items: source: remote: path: VintagestoryApi/Server/PathfinderTask.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: mhdistanceTolerance path: Server/PathfinderTask.cs startLine: 13 @@ -249,8 +249,8 @@ items: source: remote: path: VintagestoryApi/Server/PathfinderTask.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: waypoints path: Server/PathfinderTask.cs startLine: 14 @@ -276,8 +276,8 @@ items: source: remote: path: VintagestoryApi/Server/PathfinderTask.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Finished path: Server/PathfinderTask.cs startLine: 16 @@ -303,8 +303,8 @@ items: source: remote: path: VintagestoryApi/Server/PathfinderTask.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Server/PathfinderTask.cs startLine: 18 diff --git a/api/Vintagestory.API.Server.PlayerGroup.yml b/api/Vintagestory.API.Server.PlayerGroup.yml index e022f957..1ffafef5 100644 --- a/api/Vintagestory.API.Server.PlayerGroup.yml +++ b/api/Vintagestory.API.Server.PlayerGroup.yml @@ -24,8 +24,8 @@ items: source: remote: path: VintagestoryApi/Server/PlayerGroup.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlayerGroup path: Server/PlayerGroup.cs startLine: 7 @@ -71,8 +71,8 @@ items: source: remote: path: VintagestoryApi/Server/PlayerGroup.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Uid path: Server/PlayerGroup.cs startLine: 11 @@ -108,8 +108,8 @@ items: source: remote: path: VintagestoryApi/Server/PlayerGroup.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Name path: Server/PlayerGroup.cs startLine: 13 @@ -145,8 +145,8 @@ items: source: remote: path: VintagestoryApi/Server/PlayerGroup.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreatedDate path: Server/PlayerGroup.cs startLine: 15 @@ -182,8 +182,8 @@ items: source: remote: path: VintagestoryApi/Server/PlayerGroup.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OwnerUID path: Server/PlayerGroup.cs startLine: 17 @@ -219,8 +219,8 @@ items: source: remote: path: VintagestoryApi/Server/PlayerGroup.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ChatHistory path: Server/PlayerGroup.cs startLine: 19 @@ -256,8 +256,8 @@ items: source: remote: path: VintagestoryApi/Server/PlayerGroup.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Md5Identifier path: Server/PlayerGroup.cs startLine: 21 @@ -293,8 +293,8 @@ items: source: remote: path: VintagestoryApi/Server/PlayerGroup.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreatedByPrivateMessage path: Server/PlayerGroup.cs startLine: 23 @@ -330,8 +330,8 @@ items: source: remote: path: VintagestoryApi/Server/PlayerGroup.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnlinePlayers path: Server/PlayerGroup.cs startLine: 26 @@ -357,8 +357,8 @@ items: source: remote: path: VintagestoryApi/Server/PlayerGroup.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Server/PlayerGroup.cs startLine: 29 diff --git a/api/Vintagestory.API.Server.Privilege.yml b/api/Vintagestory.API.Server.Privilege.yml index ce95e4c1..3977a49d 100644 --- a/api/Vintagestory.API.Server.Privilege.yml +++ b/api/Vintagestory.API.Server.Privilege.yml @@ -44,8 +44,8 @@ items: source: remote: path: VintagestoryApi/Server/Privilege.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Privilege path: Server/Privilege.cs startLine: 2 @@ -79,8 +79,8 @@ items: source: remote: path: VintagestoryApi/Server/Privilege.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AllCodes path: Server/Privilege.cs startLine: 5 @@ -107,8 +107,8 @@ items: source: remote: path: VintagestoryApi/Server/Privilege.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: buildblocks path: Server/Privilege.cs startLine: 44 @@ -136,8 +136,8 @@ items: source: remote: path: VintagestoryApi/Server/Privilege.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: useblock path: Server/Privilege.cs startLine: 49 @@ -165,8 +165,8 @@ items: source: remote: path: VintagestoryApi/Server/Privilege.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: buildblockseverywhere path: Server/Privilege.cs startLine: 54 @@ -194,8 +194,8 @@ items: source: remote: path: VintagestoryApi/Server/Privilege.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: useblockseverywhere path: Server/Privilege.cs startLine: 59 @@ -223,8 +223,8 @@ items: source: remote: path: VintagestoryApi/Server/Privilege.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: attackplayers path: Server/Privilege.cs startLine: 64 @@ -252,8 +252,8 @@ items: source: remote: path: VintagestoryApi/Server/Privilege.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: attackcreatures path: Server/Privilege.cs startLine: 69 @@ -281,8 +281,8 @@ items: source: remote: path: VintagestoryApi/Server/Privilege.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: freemove path: Server/Privilege.cs startLine: 74 @@ -310,8 +310,8 @@ items: source: remote: path: VintagestoryApi/Server/Privilege.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: gamemode path: Server/Privilege.cs startLine: 79 @@ -339,8 +339,8 @@ items: source: remote: path: VintagestoryApi/Server/Privilege.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: pickingrange path: Server/Privilege.cs startLine: 84 @@ -368,8 +368,8 @@ items: source: remote: path: VintagestoryApi/Server/Privilege.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: chat path: Server/Privilege.cs startLine: 89 @@ -397,8 +397,8 @@ items: source: remote: path: VintagestoryApi/Server/Privilege.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: selfkill path: Server/Privilege.cs startLine: 94 @@ -426,8 +426,8 @@ items: source: remote: path: VintagestoryApi/Server/Privilege.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: kick path: Server/Privilege.cs startLine: 99 @@ -455,8 +455,8 @@ items: source: remote: path: VintagestoryApi/Server/Privilege.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ban path: Server/Privilege.cs startLine: 104 @@ -484,8 +484,8 @@ items: source: remote: path: VintagestoryApi/Server/Privilege.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: whitelist path: Server/Privilege.cs startLine: 109 @@ -513,8 +513,8 @@ items: source: remote: path: VintagestoryApi/Server/Privilege.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: setwelcome path: Server/Privilege.cs startLine: 114 @@ -542,8 +542,8 @@ items: source: remote: path: VintagestoryApi/Server/Privilege.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: announce path: Server/Privilege.cs startLine: 119 @@ -571,8 +571,8 @@ items: source: remote: path: VintagestoryApi/Server/Privilege.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: readlists path: Server/Privilege.cs startLine: 124 @@ -600,8 +600,8 @@ items: source: remote: path: VintagestoryApi/Server/Privilege.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: give path: Server/Privilege.cs startLine: 129 @@ -629,8 +629,8 @@ items: source: remote: path: VintagestoryApi/Server/Privilege.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: claimland path: Server/Privilege.cs startLine: 134 @@ -658,8 +658,8 @@ items: source: remote: path: VintagestoryApi/Server/Privilege.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: setspawn path: Server/Privilege.cs startLine: 139 @@ -687,8 +687,8 @@ items: source: remote: path: VintagestoryApi/Server/Privilege.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: controlserver path: Server/Privilege.cs startLine: 144 @@ -716,8 +716,8 @@ items: source: remote: path: VintagestoryApi/Server/Privilege.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: tp path: Server/Privilege.cs startLine: 149 @@ -745,8 +745,8 @@ items: source: remote: path: VintagestoryApi/Server/Privilege.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: time path: Server/Privilege.cs startLine: 154 @@ -774,8 +774,8 @@ items: source: remote: path: VintagestoryApi/Server/Privilege.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: grantrevoke path: Server/Privilege.cs startLine: 159 @@ -803,8 +803,8 @@ items: source: remote: path: VintagestoryApi/Server/Privilege.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: root path: Server/Privilege.cs startLine: 164 @@ -832,8 +832,8 @@ items: source: remote: path: VintagestoryApi/Server/Privilege.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: commandplayer path: Server/Privilege.cs startLine: 169 @@ -861,8 +861,8 @@ items: source: remote: path: VintagestoryApi/Server/Privilege.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: controlplayergroups path: Server/Privilege.cs startLine: 174 @@ -890,8 +890,8 @@ items: source: remote: path: VintagestoryApi/Server/Privilege.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: manageplayergroups path: Server/Privilege.cs startLine: 179 diff --git a/api/Vintagestory.API.Server.TreeGenParams.yml b/api/Vintagestory.API.Server.TreeGenParams.yml index ffb9291b..9e9c3506 100644 --- a/api/Vintagestory.API.Server.TreeGenParams.yml +++ b/api/Vintagestory.API.Server.TreeGenParams.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Server/ITreeGenerator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TreeGenParams path: Server/ITreeGenerator.cs startLine: 13 @@ -57,8 +57,8 @@ items: source: remote: path: VintagestoryApi/Server/ITreeGenerator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: hemisphere path: Server/ITreeGenerator.cs startLine: 15 @@ -84,8 +84,8 @@ items: source: remote: path: VintagestoryApi/Server/ITreeGenerator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: skipForestFloor path: Server/ITreeGenerator.cs startLine: 16 @@ -111,8 +111,8 @@ items: source: remote: path: VintagestoryApi/Server/ITreeGenerator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: size path: Server/ITreeGenerator.cs startLine: 17 @@ -138,8 +138,8 @@ items: source: remote: path: VintagestoryApi/Server/ITreeGenerator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: vinesGrowthChance path: Server/ITreeGenerator.cs startLine: 18 @@ -165,8 +165,8 @@ items: source: remote: path: VintagestoryApi/Server/ITreeGenerator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: mossGrowthChance path: Server/ITreeGenerator.cs startLine: 19 @@ -192,8 +192,8 @@ items: source: remote: path: VintagestoryApi/Server/ITreeGenerator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: otherBlockChance path: Server/ITreeGenerator.cs startLine: 20 @@ -219,8 +219,8 @@ items: source: remote: path: VintagestoryApi/Server/ITreeGenerator.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: treesInChunkGenerated path: Server/ITreeGenerator.cs startLine: 21 diff --git a/api/Vintagestory.API.Util.ArrayExtensions.yml b/api/Vintagestory.API.Util.ArrayExtensions.yml index 45fd763c..1f0865bc 100644 --- a/api/Vintagestory.API.Util.ArrayExtensions.yml +++ b/api/Vintagestory.API.Util.ArrayExtensions.yml @@ -30,8 +30,8 @@ items: source: remote: path: VintagestoryApi/Util/ArrayExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ArrayExtensions path: Util/ArrayExtensions.cs startLine: 101 @@ -66,8 +66,8 @@ items: source: remote: path: VintagestoryApi/Util/ArrayExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Nearest path: Util/ArrayExtensions.cs startLine: 103 @@ -105,8 +105,8 @@ items: source: remote: path: VintagestoryApi/Util/ArrayExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InRange path: Util/ArrayExtensions.cs startLine: 121 @@ -146,8 +146,8 @@ items: source: remote: path: VintagestoryApi/Util/ArrayExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IndexOf path: Util/ArrayExtensions.cs startLine: 137 @@ -185,8 +185,8 @@ items: source: remote: path: VintagestoryApi/Util/ArrayExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IndexOf path: Util/ArrayExtensions.cs startLine: 150 @@ -224,8 +224,8 @@ items: source: remote: path: VintagestoryApi/Util/ArrayExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Contains path: Util/ArrayExtensions.cs startLine: 164 @@ -263,8 +263,8 @@ items: source: remote: path: VintagestoryApi/Util/ArrayExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Remove path: Util/ArrayExtensions.cs startLine: 184 @@ -308,8 +308,8 @@ items: source: remote: path: VintagestoryApi/Util/ArrayExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveEntry path: Util/ArrayExtensions.cs startLine: 192 @@ -347,8 +347,8 @@ items: source: remote: path: VintagestoryApi/Util/ArrayExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Append path: Util/ArrayExtensions.cs startLine: 221 @@ -392,8 +392,8 @@ items: source: remote: path: VintagestoryApi/Util/ArrayExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: InsertAt path: Util/ArrayExtensions.cs startLine: 239 @@ -440,8 +440,8 @@ items: source: remote: path: VintagestoryApi/Util/ArrayExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Append path: Util/ArrayExtensions.cs startLine: 257 @@ -485,8 +485,8 @@ items: source: remote: path: VintagestoryApi/Util/ArrayExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Append path: Util/ArrayExtensions.cs startLine: 280 @@ -530,8 +530,8 @@ items: source: remote: path: VintagestoryApi/Util/ArrayExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Fill path: Util/ArrayExtensions.cs startLine: 298 @@ -569,8 +569,8 @@ items: source: remote: path: VintagestoryApi/Util/ArrayExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Fill path: Util/ArrayExtensions.cs startLine: 308 @@ -608,8 +608,8 @@ items: source: remote: path: VintagestoryApi/Util/ArrayExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Shuffle path: Util/ArrayExtensions.cs startLine: 325 @@ -652,8 +652,8 @@ items: source: remote: path: VintagestoryApi/Util/ArrayExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Shuffle path: Util/ArrayExtensions.cs startLine: 347 diff --git a/api/Vintagestory.API.Util.ArrayUtil.yml b/api/Vintagestory.API.Util.ArrayUtil.yml index 1929e692..388ab7b3 100644 --- a/api/Vintagestory.API.Util.ArrayUtil.yml +++ b/api/Vintagestory.API.Util.ArrayUtil.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Util/ArrayExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ArrayUtil path: Util/ArrayExtensions.cs startLine: 10 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Util/ArrayExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateFilled path: Util/ArrayExtensions.cs startLine: 13 @@ -91,8 +91,8 @@ items: source: remote: path: VintagestoryApi/Util/ArrayExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateFilled path: Util/ArrayExtensions.cs startLine: 24 @@ -130,8 +130,8 @@ items: source: remote: path: VintagestoryApi/Util/ArrayExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FastCopy path: Util/ArrayExtensions.cs startLine: 36 diff --git a/api/Vintagestory.API.Util.AsyncHelper.Multithreaded.yml b/api/Vintagestory.API.Util.AsyncHelper.Multithreaded.yml index 1e653e33..328ada5c 100644 --- a/api/Vintagestory.API.Util.AsyncHelper.Multithreaded.yml +++ b/api/Vintagestory.API.Util.AsyncHelper.Multithreaded.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Util/AsyncHelper.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Multithreaded path: Util/AsyncHelper.cs startLine: 27 @@ -55,8 +55,8 @@ items: source: remote: path: VintagestoryApi/Util/AsyncHelper.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: activeThreads path: Util/AsyncHelper.cs startLine: 29 @@ -82,8 +82,8 @@ items: source: remote: path: VintagestoryApi/Util/AsyncHelper.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ResetThreading path: Util/AsyncHelper.cs startLine: 31 @@ -108,8 +108,8 @@ items: source: remote: path: VintagestoryApi/Util/AsyncHelper.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WorkerThreadsInProgress path: Util/AsyncHelper.cs startLine: 36 @@ -136,8 +136,8 @@ items: source: remote: path: VintagestoryApi/Util/AsyncHelper.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartWorkerThread path: Util/AsyncHelper.cs startLine: 41 @@ -165,8 +165,8 @@ items: source: remote: path: VintagestoryApi/Util/AsyncHelper.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnWorkerThread path: Util/AsyncHelper.cs startLine: 46 diff --git a/api/Vintagestory.API.Util.AsyncHelper.yml b/api/Vintagestory.API.Util.AsyncHelper.yml index 8902f2f7..4bb9c340 100644 --- a/api/Vintagestory.API.Util.AsyncHelper.yml +++ b/api/Vintagestory.API.Util.AsyncHelper.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Util/AsyncHelper.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AsyncHelper path: Util/AsyncHelper.cs startLine: 10 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Util/AsyncHelper.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CanProceedOnThisThread path: Util/AsyncHelper.cs startLine: 19 diff --git a/api/Vintagestory.API.Util.BitmapExtensions.yml b/api/Vintagestory.API.Util.BitmapExtensions.yml index 6eab1322..8b1252ca 100644 --- a/api/Vintagestory.API.Util.BitmapExtensions.yml +++ b/api/Vintagestory.API.Util.BitmapExtensions.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Util/BitmapExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: BitmapExtensions path: Util/BitmapExtensions.cs startLine: 6 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Util/BitmapExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetPixels path: Util/BitmapExtensions.cs startLine: 8 @@ -88,8 +88,8 @@ items: source: remote: path: VintagestoryApi/Util/BitmapExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Save path: Util/BitmapExtensions.cs startLine: 21 diff --git a/api/Vintagestory.API.Util.CreateCachableObjectDelegate-1.yml b/api/Vintagestory.API.Util.CreateCachableObjectDelegate-1.yml index 208038c5..4cc13c9d 100644 --- a/api/Vintagestory.API.Util.CreateCachableObjectDelegate-1.yml +++ b/api/Vintagestory.API.Util.CreateCachableObjectDelegate-1.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Util/ObjectCacheUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CreateCachableObjectDelegate path: Util/ObjectCacheUtil.cs startLine: 4 diff --git a/api/Vintagestory.API.Util.DictExtensions.yml b/api/Vintagestory.API.Util.DictExtensions.yml index 20038972..77df3bc3 100644 --- a/api/Vintagestory.API.Util.DictExtensions.yml +++ b/api/Vintagestory.API.Util.DictExtensions.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Util/DictExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DictExtensions path: Util/DictExtensions.cs startLine: 8 @@ -56,8 +56,8 @@ items: source: remote: path: VintagestoryApi/Util/DictExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddRange path: Util/DictExtensions.cs startLine: 17 @@ -100,8 +100,8 @@ items: source: remote: path: VintagestoryApi/Util/DictExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Get path: Util/DictExtensions.cs startLine: 34 @@ -150,8 +150,8 @@ items: source: remote: path: VintagestoryApi/Util/DictExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Remove path: Util/DictExtensions.cs startLine: 43 @@ -188,8 +188,8 @@ items: source: remote: path: VintagestoryApi/Util/DictExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveAll path: Util/DictExtensions.cs startLine: 48 @@ -226,8 +226,8 @@ items: source: remote: path: VintagestoryApi/Util/DictExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveAllByKey path: Util/DictExtensions.cs startLine: 56 diff --git a/api/Vintagestory.API.Util.EntityTalkUtil.yml b/api/Vintagestory.API.Util.EntityTalkUtil.yml index 4b658b35..7f06f21b 100644 --- a/api/Vintagestory.API.Util.EntityTalkUtil.yml +++ b/api/Vintagestory.API.Util.EntityTalkUtil.yml @@ -43,8 +43,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EntityTalkUtil path: Common/Entity/EntityTalkUtil.cs startLine: 42 @@ -78,8 +78,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TalkPacketId path: Common/Entity/EntityTalkUtil.cs startLine: 44 @@ -105,8 +105,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: lettersLeftToTalk path: Common/Entity/EntityTalkUtil.cs startLine: 46 @@ -132,8 +132,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: totalLettersToTalk path: Common/Entity/EntityTalkUtil.cs startLine: 47 @@ -159,8 +159,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: currentLetterInWord path: Common/Entity/EntityTalkUtil.cs startLine: 49 @@ -186,8 +186,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: totalLettersTalked path: Common/Entity/EntityTalkUtil.cs startLine: 50 @@ -213,8 +213,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: chordDelay path: Common/Entity/EntityTalkUtil.cs startLine: 52 @@ -240,8 +240,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: LongNote path: Common/Entity/EntityTalkUtil.cs startLine: 54 @@ -267,8 +267,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TalkSpeed path: Common/Entity/EntityTalkUtil.cs startLine: 56 @@ -294,8 +294,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: talkType path: Common/Entity/EntityTalkUtil.cs startLine: 59 @@ -321,8 +321,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: sapi path: Common/Entity/EntityTalkUtil.cs startLine: 61 @@ -348,8 +348,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: capi path: Common/Entity/EntityTalkUtil.cs startLine: 62 @@ -375,8 +375,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: entity path: Common/Entity/EntityTalkUtil.cs startLine: 63 @@ -402,8 +402,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: soundName path: Common/Entity/EntityTalkUtil.cs startLine: 65 @@ -429,8 +429,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: soundLength path: Common/Entity/EntityTalkUtil.cs startLine: 66 @@ -456,8 +456,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: slidingPitchSounds path: Common/Entity/EntityTalkUtil.cs startLine: 68 @@ -483,8 +483,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: stoppedSlidingSounds path: Common/Entity/EntityTalkUtil.cs startLine: 69 @@ -510,8 +510,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: chordDelayMul path: Common/Entity/EntityTalkUtil.cs startLine: 71 @@ -537,8 +537,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: pitchModifier path: Common/Entity/EntityTalkUtil.cs startLine: 72 @@ -564,8 +564,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: volumneModifier path: Common/Entity/EntityTalkUtil.cs startLine: 73 @@ -591,8 +591,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: idleTalkChance path: Common/Entity/EntityTalkUtil.cs startLine: 74 @@ -618,8 +618,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddSoundLengthChordDelay path: Common/Entity/EntityTalkUtil.cs startLine: 76 @@ -645,8 +645,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Common/Entity/EntityTalkUtil.cs startLine: 78 @@ -679,8 +679,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetModifiers path: Common/Entity/EntityTalkUtil.cs startLine: 143 @@ -715,8 +715,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rand path: Common/Entity/EntityTalkUtil.cs startLine: 156 @@ -744,8 +744,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OnGameTick path: Common/Entity/EntityTalkUtil.cs startLine: 158 @@ -776,8 +776,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlaySound path: Common/Entity/EntityTalkUtil.cs startLine: 326 @@ -812,8 +812,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PlaySound path: Common/Entity/EntityTalkUtil.cs startLine: 331 @@ -852,8 +852,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Talk path: Common/Entity/EntityTalkUtil.cs startLine: 367 diff --git a/api/Vintagestory.API.Util.EnumTalkType.yml b/api/Vintagestory.API.Util.EnumTalkType.yml index 065dd429..608f0f2e 100644 --- a/api/Vintagestory.API.Util.EnumTalkType.yml +++ b/api/Vintagestory.API.Util.EnumTalkType.yml @@ -27,8 +27,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumTalkType path: Common/Entity/EntityTalkUtil.cs startLine: 11 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Meet path: Common/Entity/EntityTalkUtil.cs startLine: 13 @@ -78,8 +78,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Idle path: Common/Entity/EntityTalkUtil.cs startLine: 14 @@ -104,8 +104,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Hurt path: Common/Entity/EntityTalkUtil.cs startLine: 15 @@ -130,8 +130,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Hurt2 path: Common/Entity/EntityTalkUtil.cs startLine: 16 @@ -156,8 +156,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Death path: Common/Entity/EntityTalkUtil.cs startLine: 17 @@ -182,8 +182,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Purchase path: Common/Entity/EntityTalkUtil.cs startLine: 18 @@ -208,8 +208,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Complain path: Common/Entity/EntityTalkUtil.cs startLine: 19 @@ -234,8 +234,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Goodbye path: Common/Entity/EntityTalkUtil.cs startLine: 20 @@ -260,8 +260,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IdleShort path: Common/Entity/EntityTalkUtil.cs startLine: 21 @@ -286,8 +286,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Laugh path: Common/Entity/EntityTalkUtil.cs startLine: 22 @@ -312,8 +312,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Thrust path: Common/Entity/EntityTalkUtil.cs startLine: 23 @@ -338,8 +338,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Shrug path: Common/Entity/EntityTalkUtil.cs startLine: 24 diff --git a/api/Vintagestory.API.Util.EnumerableExtensions.yml b/api/Vintagestory.API.Util.EnumerableExtensions.yml index faeeb61f..f52a1497 100644 --- a/api/Vintagestory.API.Util.EnumerableExtensions.yml +++ b/api/Vintagestory.API.Util.EnumerableExtensions.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Util/ArrayExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EnumerableExtensions path: Util/ArrayExtensions.cs startLine: 54 @@ -54,8 +54,8 @@ items: source: remote: path: VintagestoryApi/Util/ArrayExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Foreach path: Util/ArrayExtensions.cs startLine: 56 @@ -91,8 +91,8 @@ items: source: remote: path: VintagestoryApi/Util/ArrayExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Nearest path: Util/ArrayExtensions.cs startLine: 64 @@ -130,8 +130,8 @@ items: source: remote: path: VintagestoryApi/Util/ArrayExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NearestDistance path: Util/ArrayExtensions.cs startLine: 83 diff --git a/api/Vintagestory.API.Util.EqualityUtil.yml b/api/Vintagestory.API.Util.EqualityUtil.yml index 5df53115..5eae9961 100644 --- a/api/Vintagestory.API.Util.EqualityUtil.yml +++ b/api/Vintagestory.API.Util.EqualityUtil.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Util/EqualityUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EqualityUtil path: Util/EqualityUtil.cs startLine: 4 @@ -51,8 +51,8 @@ items: source: remote: path: VintagestoryApi/Util/EqualityUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NumberEquals path: Util/EqualityUtil.cs startLine: 7 diff --git a/api/Vintagestory.API.Util.HashsetExtensions.yml b/api/Vintagestory.API.Util.HashsetExtensions.yml index fbe6f0ec..fb474050 100644 --- a/api/Vintagestory.API.Util.HashsetExtensions.yml +++ b/api/Vintagestory.API.Util.HashsetExtensions.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Util/HashsetExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: HashsetExtensions path: Util/HashsetExtensions.cs startLine: 6 @@ -56,8 +56,8 @@ items: source: remote: path: VintagestoryApi/Util/HashsetExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddRange path: Util/HashsetExtensions.cs startLine: 8 @@ -93,8 +93,8 @@ items: source: remote: path: VintagestoryApi/Util/HashsetExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddRange path: Util/HashsetExtensions.cs startLine: 13 @@ -130,8 +130,8 @@ items: source: remote: path: VintagestoryApi/Util/HashsetExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AddRange path: Util/HashsetExtensions.cs startLine: 18 @@ -167,8 +167,8 @@ items: source: remote: path: VintagestoryApi/Util/HashsetExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Implode path: Util/HashsetExtensions.cs startLine: 23 @@ -206,8 +206,8 @@ items: source: remote: path: VintagestoryApi/Util/HashsetExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PopOne path: Util/HashsetExtensions.cs startLine: 38 diff --git a/api/Vintagestory.API.Util.IgnoreFile.yml b/api/Vintagestory.API.Util.IgnoreFile.yml index 8fe78611..06742534 100644 --- a/api/Vintagestory.API.Util.IgnoreFile.yml +++ b/api/Vintagestory.API.Util.IgnoreFile.yml @@ -19,8 +19,8 @@ items: source: remote: path: VintagestoryApi/Util/IgnoreUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IgnoreFile path: Util/IgnoreUtil.cs startLine: 8 @@ -54,8 +54,8 @@ items: source: remote: path: VintagestoryApi/Util/IgnoreUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: filename path: Util/IgnoreUtil.cs startLine: 10 @@ -81,8 +81,8 @@ items: source: remote: path: VintagestoryApi/Util/IgnoreUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: fullpath path: Util/IgnoreUtil.cs startLine: 11 @@ -108,8 +108,8 @@ items: source: remote: path: VintagestoryApi/Util/IgnoreUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Util/IgnoreUtil.cs startLine: 15 @@ -142,8 +142,8 @@ items: source: remote: path: VintagestoryApi/Util/IgnoreUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Available path: Util/IgnoreUtil.cs startLine: 49 diff --git a/api/Vintagestory.API.Util.ListExtensions.yml b/api/Vintagestory.API.Util.ListExtensions.yml index 32738a16..438a117f 100644 --- a/api/Vintagestory.API.Util.ListExtensions.yml +++ b/api/Vintagestory.API.Util.ListExtensions.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Util/ListExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ListExtensions path: Util/ListExtensions.cs startLine: 6 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Util/ListExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Shuffle path: Util/ListExtensions.cs startLine: 14 @@ -95,8 +95,8 @@ items: source: remote: path: VintagestoryApi/Util/ListExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Shuffle path: Util/ListExtensions.cs startLine: 33 diff --git a/api/Vintagestory.API.Util.NetUtil.yml b/api/Vintagestory.API.Util.NetUtil.yml index e39f383d..62bdaf4d 100644 --- a/api/Vintagestory.API.Util.NetUtil.yml +++ b/api/Vintagestory.API.Util.NetUtil.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Util/NetUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NetUtil path: Util/NetUtil.cs startLine: 15 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Util/NetUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OpenUrlInBrowser path: Util/NetUtil.cs startLine: 17 @@ -85,8 +85,8 @@ items: source: remote: path: VintagestoryApi/Util/NetUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsPrivateIp path: Util/NetUtil.cs startLine: 55 @@ -119,8 +119,8 @@ items: source: remote: path: VintagestoryApi/Util/NetUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: getUriInfo path: Util/NetUtil.cs startLine: 76 diff --git a/api/Vintagestory.API.Util.ObjectCacheUtil.yml b/api/Vintagestory.API.Util.ObjectCacheUtil.yml index bce786ae..4182dd66 100644 --- a/api/Vintagestory.API.Util.ObjectCacheUtil.yml +++ b/api/Vintagestory.API.Util.ObjectCacheUtil.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Util/ObjectCacheUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ObjectCacheUtil path: Util/ObjectCacheUtil.cs startLine: 6 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Util/ObjectCacheUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryGet path: Util/ObjectCacheUtil.cs startLine: 8 @@ -91,8 +91,8 @@ items: source: remote: path: VintagestoryApi/Util/ObjectCacheUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetOrCreate path: Util/ObjectCacheUtil.cs startLine: 18 @@ -131,8 +131,8 @@ items: source: remote: path: VintagestoryApi/Util/ObjectCacheUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Delete path: Util/ObjectCacheUtil.cs startLine: 34 diff --git a/api/Vintagestory.API.Util.PosUtil.yml b/api/Vintagestory.API.Util.PosUtil.yml index 0bba5bf3..81567876 100644 --- a/api/Vintagestory.API.Util.PosUtil.yml +++ b/api/Vintagestory.API.Util.PosUtil.yml @@ -17,8 +17,8 @@ items: source: remote: path: VintagestoryApi/Util/PosUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: PosUtil path: Util/PosUtil.cs startLine: 4 @@ -53,8 +53,8 @@ items: source: remote: path: VintagestoryApi/Util/PosUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetOrCreate path: Util/PosUtil.cs startLine: 6 @@ -87,8 +87,8 @@ items: source: remote: path: VintagestoryApi/Util/PosUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SetOrCreate path: Util/PosUtil.cs startLine: 15 diff --git a/api/Vintagestory.API.Util.ReaderWriterExtensions.yml b/api/Vintagestory.API.Util.ReaderWriterExtensions.yml index 3c23ac67..1c300839 100644 --- a/api/Vintagestory.API.Util.ReaderWriterExtensions.yml +++ b/api/Vintagestory.API.Util.ReaderWriterExtensions.yml @@ -20,8 +20,8 @@ items: source: remote: path: VintagestoryApi/Util/ReaderWriterExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReaderWriterExtensions path: Util/ReaderWriterExtensions.cs startLine: 4 @@ -56,8 +56,8 @@ items: source: remote: path: VintagestoryApi/Util/ReaderWriterExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WriteArray path: Util/ReaderWriterExtensions.cs startLine: 7 @@ -91,8 +91,8 @@ items: source: remote: path: VintagestoryApi/Util/ReaderWriterExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReadStringArray path: Util/ReaderWriterExtensions.cs startLine: 16 @@ -123,8 +123,8 @@ items: source: remote: path: VintagestoryApi/Util/ReaderWriterExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WriteArray path: Util/ReaderWriterExtensions.cs startLine: 30 @@ -158,8 +158,8 @@ items: source: remote: path: VintagestoryApi/Util/ReaderWriterExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ReadIntArray path: Util/ReaderWriterExtensions.cs startLine: 39 @@ -190,8 +190,8 @@ items: source: remote: path: VintagestoryApi/Util/ReaderWriterExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clear path: Util/ReaderWriterExtensions.cs startLine: 52 diff --git a/api/Vintagestory.API.Util.RelaxedReadOnlyDictionary-2.yml b/api/Vintagestory.API.Util.RelaxedReadOnlyDictionary-2.yml index ecd2b1e9..8098a944 100644 --- a/api/Vintagestory.API.Util.RelaxedReadOnlyDictionary-2.yml +++ b/api/Vintagestory.API.Util.RelaxedReadOnlyDictionary-2.yml @@ -31,8 +31,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/RelaxedReadOnlyDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RelaxedReadOnlyDictionary path: Datastructures/Dictionary/RelaxedReadOnlyDictionary.cs startLine: 6 @@ -86,8 +86,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/RelaxedReadOnlyDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Datastructures/Dictionary/RelaxedReadOnlyDictionary.cs startLine: 10 @@ -118,8 +118,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/RelaxedReadOnlyDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: this[] path: Datastructures/Dictionary/RelaxedReadOnlyDictionary.cs startLine: 15 @@ -168,8 +168,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/RelaxedReadOnlyDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Keys path: Datastructures/Dictionary/RelaxedReadOnlyDictionary.cs startLine: 32 @@ -204,8 +204,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/RelaxedReadOnlyDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Values path: Datastructures/Dictionary/RelaxedReadOnlyDictionary.cs startLine: 33 @@ -240,8 +240,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/RelaxedReadOnlyDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Count path: Datastructures/Dictionary/RelaxedReadOnlyDictionary.cs startLine: 34 @@ -276,8 +276,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/RelaxedReadOnlyDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IsReadOnly path: Datastructures/Dictionary/RelaxedReadOnlyDictionary.cs startLine: 36 @@ -312,8 +312,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/RelaxedReadOnlyDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Datastructures/Dictionary/RelaxedReadOnlyDictionary.cs startLine: 38 @@ -361,8 +361,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/RelaxedReadOnlyDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Add path: Datastructures/Dictionary/RelaxedReadOnlyDictionary.cs startLine: 43 @@ -402,8 +402,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/RelaxedReadOnlyDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Clear path: Datastructures/Dictionary/RelaxedReadOnlyDictionary.cs startLine: 48 @@ -438,8 +438,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/RelaxedReadOnlyDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Contains path: Datastructures/Dictionary/RelaxedReadOnlyDictionary.cs startLine: 53 @@ -478,8 +478,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/RelaxedReadOnlyDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ContainsKey path: Datastructures/Dictionary/RelaxedReadOnlyDictionary.cs startLine: 58 @@ -521,8 +521,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/RelaxedReadOnlyDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CopyTo path: Datastructures/Dictionary/RelaxedReadOnlyDictionary.cs startLine: 63 @@ -571,8 +571,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/RelaxedReadOnlyDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetEnumerator path: Datastructures/Dictionary/RelaxedReadOnlyDictionary.cs startLine: 68 @@ -606,8 +606,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/RelaxedReadOnlyDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Remove path: Datastructures/Dictionary/RelaxedReadOnlyDictionary.cs startLine: 73 @@ -652,8 +652,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/RelaxedReadOnlyDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Remove path: Datastructures/Dictionary/RelaxedReadOnlyDictionary.cs startLine: 78 @@ -696,8 +696,8 @@ items: source: remote: path: VintagestoryApi/Datastructures/Dictionary/RelaxedReadOnlyDictionary.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TryGetValue path: Datastructures/Dictionary/RelaxedReadOnlyDictionary.cs startLine: 83 diff --git a/api/Vintagestory.API.Util.SerializerUtil.ByteReadDelegatae.yml b/api/Vintagestory.API.Util.SerializerUtil.ByteReadDelegatae.yml index 90414494..a5689058 100644 --- a/api/Vintagestory.API.Util.SerializerUtil.ByteReadDelegatae.yml +++ b/api/Vintagestory.API.Util.SerializerUtil.ByteReadDelegatae.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Util/SerializerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ByteReadDelegatae path: Util/SerializerUtil.cs startLine: 8 diff --git a/api/Vintagestory.API.Util.SerializerUtil.ByteWriteDelegatae.yml b/api/Vintagestory.API.Util.SerializerUtil.ByteWriteDelegatae.yml index f7213ee6..8820e847 100644 --- a/api/Vintagestory.API.Util.SerializerUtil.ByteWriteDelegatae.yml +++ b/api/Vintagestory.API.Util.SerializerUtil.ByteWriteDelegatae.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Util/SerializerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ByteWriteDelegatae path: Util/SerializerUtil.cs startLine: 7 diff --git a/api/Vintagestory.API.Util.SerializerUtil.yml b/api/Vintagestory.API.Util.SerializerUtil.yml index 45ac03f0..321f1670 100644 --- a/api/Vintagestory.API.Util.SerializerUtil.yml +++ b/api/Vintagestory.API.Util.SerializerUtil.yml @@ -21,8 +21,8 @@ items: source: remote: path: VintagestoryApi/Util/SerializerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SerializerUtil path: Util/SerializerUtil.cs startLine: 5 @@ -56,8 +56,8 @@ items: source: remote: path: VintagestoryApi/Util/SerializerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Serialize path: Util/SerializerUtil.cs startLine: 16 @@ -97,8 +97,8 @@ items: source: remote: path: VintagestoryApi/Util/SerializerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Deserialize path: Util/SerializerUtil.cs startLine: 31 @@ -138,8 +138,8 @@ items: source: remote: path: VintagestoryApi/Util/SerializerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: DeserializeInto path: Util/SerializerUtil.cs startLine: 46 @@ -182,8 +182,8 @@ items: source: remote: path: VintagestoryApi/Util/SerializerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Deserialize path: Util/SerializerUtil.cs startLine: 62 @@ -226,8 +226,8 @@ items: source: remote: path: VintagestoryApi/Util/SerializerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBytes path: Util/SerializerUtil.cs startLine: 72 @@ -257,8 +257,8 @@ items: source: remote: path: VintagestoryApi/Util/SerializerUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FromBytes path: Util/SerializerUtil.cs startLine: 85 diff --git a/api/Vintagestory.API.Util.SlidingPitchSound.yml b/api/Vintagestory.API.Util.SlidingPitchSound.yml index 5f61cb79..fd60f38e 100644 --- a/api/Vintagestory.API.Util.SlidingPitchSound.yml +++ b/api/Vintagestory.API.Util.SlidingPitchSound.yml @@ -24,8 +24,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SlidingPitchSound path: Common/Entity/EntityTalkUtil.cs startLine: 27 @@ -59,8 +59,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: TalkType path: Common/Entity/EntityTalkUtil.cs startLine: 29 @@ -86,8 +86,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: sound path: Common/Entity/EntityTalkUtil.cs startLine: 30 @@ -113,8 +113,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: startPitch path: Common/Entity/EntityTalkUtil.cs startLine: 31 @@ -140,8 +140,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: endPitch path: Common/Entity/EntityTalkUtil.cs startLine: 32 @@ -167,8 +167,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: length path: Common/Entity/EntityTalkUtil.cs startLine: 33 @@ -194,8 +194,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: startMs path: Common/Entity/EntityTalkUtil.cs startLine: 34 @@ -221,8 +221,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartVolumne path: Common/Entity/EntityTalkUtil.cs startLine: 36 @@ -248,8 +248,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EndVolumne path: Common/Entity/EntityTalkUtil.cs startLine: 37 @@ -275,8 +275,8 @@ items: source: remote: path: VintagestoryApi/Common/Entity/EntityTalkUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Vibrato path: Common/Entity/EntityTalkUtil.cs startLine: 39 diff --git a/api/Vintagestory.API.Util.StringBuilderExtensions.yml b/api/Vintagestory.API.Util.StringBuilderExtensions.yml index ace73a45..58ddd861 100644 --- a/api/Vintagestory.API.Util.StringBuilderExtensions.yml +++ b/api/Vintagestory.API.Util.StringBuilderExtensions.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Util/StringExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StringBuilderExtensions path: Util/StringExtensions.cs startLine: 5 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Util/StringExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: AppendLineOnce path: Util/StringExtensions.cs startLine: 8 diff --git a/api/Vintagestory.API.Util.StringExtensions.yml b/api/Vintagestory.API.Util.StringExtensions.yml index a48d5880..6dbaf484 100644 --- a/api/Vintagestory.API.Util.StringExtensions.yml +++ b/api/Vintagestory.API.Util.StringExtensions.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Util/StringExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StringExtensions path: Util/StringExtensions.cs startLine: 17 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Util/StringExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CaseInsensitiveContains path: Util/StringExtensions.cs startLine: 19 diff --git a/api/Vintagestory.API.Util.StringUtil.yml b/api/Vintagestory.API.Util.StringUtil.yml index 6c73185a..2f949a70 100644 --- a/api/Vintagestory.API.Util.StringUtil.yml +++ b/api/Vintagestory.API.Util.StringUtil.yml @@ -36,8 +36,8 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StringUtil path: Util/StringUtil.cs startLine: 8 @@ -72,8 +72,8 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IndexOfOrdinal path: Util/StringUtil.cs startLine: 19 @@ -121,8 +121,8 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartsWithOrdinal path: Util/StringUtil.cs startLine: 33 @@ -170,8 +170,8 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EndsWithOrdinal path: Util/StringUtil.cs startLine: 47 @@ -219,8 +219,8 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CompareOrdinal path: Util/StringUtil.cs startLine: 60 @@ -266,8 +266,8 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UcFirst path: Util/StringUtil.cs startLine: 70 @@ -305,8 +305,8 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToBool path: Util/StringUtil.cs startLine: 75 @@ -342,8 +342,8 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveFileEnding path: Util/StringUtil.cs startLine: 83 @@ -377,8 +377,8 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToInt path: Util/StringUtil.cs startLine: 88 @@ -414,8 +414,8 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToLong path: Util/StringUtil.cs startLine: 98 @@ -451,8 +451,8 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToFloat path: Util/StringUtil.cs startLine: 109 @@ -488,8 +488,8 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToDouble path: Util/StringUtil.cs startLine: 119 @@ -525,8 +525,8 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToDoubleOrNull path: Util/StringUtil.cs startLine: 129 @@ -562,8 +562,8 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToFloatOrNull path: Util/StringUtil.cs startLine: 141 @@ -599,8 +599,8 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: CountChars path: Util/StringUtil.cs startLine: 154 @@ -636,8 +636,8 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ContainsFast path: Util/StringUtil.cs startLine: 165 @@ -673,8 +673,8 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ContainsFast path: Util/StringUtil.cs startLine: 181 @@ -710,8 +710,8 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartsWithFast path: Util/StringUtil.cs startLine: 192 @@ -747,8 +747,8 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: StartsWithFast path: Util/StringUtil.cs startLine: 206 @@ -786,8 +786,8 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: EqualsFast path: Util/StringUtil.cs startLine: 220 @@ -822,8 +822,8 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FastStartsWith path: Util/StringUtil.cs startLine: 233 @@ -861,8 +861,8 @@ items: source: remote: path: VintagestoryApi/Util/StringUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: RemoveDiacritics path: Util/StringUtil.cs startLine: 247 diff --git a/api/Vintagestory.API.Util.ThreadSafeRandom.yml b/api/Vintagestory.API.Util.ThreadSafeRandom.yml index 5c6d3249..c7040f6a 100644 --- a/api/Vintagestory.API.Util.ThreadSafeRandom.yml +++ b/api/Vintagestory.API.Util.ThreadSafeRandom.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Util/ThreadSafeRandom.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ThreadSafeRandom path: Util/ThreadSafeRandom.cs startLine: 4 @@ -65,8 +65,8 @@ items: source: remote: path: VintagestoryApi/Util/ThreadSafeRandom.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Util/ThreadSafeRandom.cs startLine: 8 @@ -97,8 +97,8 @@ items: source: remote: path: VintagestoryApi/Util/ThreadSafeRandom.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Util/ThreadSafeRandom.cs startLine: 13 @@ -126,8 +126,8 @@ items: source: remote: path: VintagestoryApi/Util/ThreadSafeRandom.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Next path: Util/ThreadSafeRandom.cs startLine: 17 @@ -169,8 +169,8 @@ items: source: remote: path: VintagestoryApi/Util/ThreadSafeRandom.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NextDouble path: Util/ThreadSafeRandom.cs startLine: 25 @@ -201,8 +201,8 @@ items: source: remote: path: VintagestoryApi/Util/ThreadSafeRandom.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Next path: Util/ThreadSafeRandom.cs startLine: 33 @@ -233,8 +233,8 @@ items: source: remote: path: VintagestoryApi/Util/ThreadSafeRandom.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Next path: Util/ThreadSafeRandom.cs startLine: 41 @@ -279,8 +279,8 @@ items: source: remote: path: VintagestoryApi/Util/ThreadSafeRandom.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: NextBytes path: Util/ThreadSafeRandom.cs startLine: 49 diff --git a/api/Vintagestory.API.Util.UriInfo.yml b/api/Vintagestory.API.Util.UriInfo.yml index 5a0dd014..8e875765 100644 --- a/api/Vintagestory.API.Util.UriInfo.yml +++ b/api/Vintagestory.API.Util.UriInfo.yml @@ -18,8 +18,8 @@ items: source: remote: path: VintagestoryApi/Util/NetUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: UriInfo path: Util/NetUtil.cs startLine: 7 @@ -50,8 +50,8 @@ items: source: remote: path: VintagestoryApi/Util/NetUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Hostname path: Util/NetUtil.cs startLine: 8 @@ -77,8 +77,8 @@ items: source: remote: path: VintagestoryApi/Util/NetUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Port path: Util/NetUtil.cs startLine: 9 @@ -104,8 +104,8 @@ items: source: remote: path: VintagestoryApi/Util/NetUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Password path: Util/NetUtil.cs startLine: 10 diff --git a/api/Vintagestory.API.Util.WildcardUtil.yml b/api/Vintagestory.API.Util.WildcardUtil.yml index 4f379447..1dfcda0b 100644 --- a/api/Vintagestory.API.Util.WildcardUtil.yml +++ b/api/Vintagestory.API.Util.WildcardUtil.yml @@ -22,8 +22,8 @@ items: source: remote: path: VintagestoryApi/Util/WildcardUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WildcardUtil path: Util/WildcardUtil.cs startLine: 6 @@ -58,8 +58,8 @@ items: source: remote: path: VintagestoryApi/Util/WildcardUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: WildCardReplace path: Util/WildcardUtil.cs startLine: 16 @@ -102,8 +102,8 @@ items: source: remote: path: VintagestoryApi/Util/WildcardUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Match path: Util/WildcardUtil.cs startLine: 45 @@ -138,8 +138,8 @@ items: source: remote: path: VintagestoryApi/Util/WildcardUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Match path: Util/WildcardUtil.cs startLine: 49 @@ -174,8 +174,8 @@ items: source: remote: path: VintagestoryApi/Util/WildcardUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Match path: Util/WildcardUtil.cs startLine: 59 @@ -207,8 +207,8 @@ items: source: remote: path: VintagestoryApi/Util/WildcardUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Match path: Util/WildcardUtil.cs startLine: 72 @@ -251,8 +251,8 @@ items: source: remote: path: VintagestoryApi/Util/WildcardUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: MatchesVariants path: Util/WildcardUtil.cs startLine: 100 @@ -289,8 +289,8 @@ items: source: remote: path: VintagestoryApi/Util/WildcardUtil.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: GetWildcardValue path: Util/WildcardUtil.cs startLine: 120 diff --git a/api/Vintagestory.API.Util.fillCallback-1.yml b/api/Vintagestory.API.Util.fillCallback-1.yml index 639247f2..c5117a0b 100644 --- a/api/Vintagestory.API.Util.fillCallback-1.yml +++ b/api/Vintagestory.API.Util.fillCallback-1.yml @@ -15,8 +15,8 @@ items: source: remote: path: VintagestoryApi/Util/ArrayExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: fillCallback path: Util/ArrayExtensions.cs startLine: 8 diff --git a/api/Vintagestory.GameContent.IWrenchOrientable.yml b/api/Vintagestory.GameContent.IWrenchOrientable.yml index 398ed122..e22984fa 100644 --- a/api/Vintagestory.GameContent.IWrenchOrientable.yml +++ b/api/Vintagestory.GameContent.IWrenchOrientable.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/IWrenchOrientable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: IWrenchOrientable path: Common/Collectible/Block/IWrenchOrientable.cs startLine: 4 @@ -41,8 +41,8 @@ items: source: remote: path: VintagestoryApi/Common/Collectible/Block/IWrenchOrientable.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Rotate path: Common/Collectible/Block/IWrenchOrientable.cs startLine: 6 diff --git a/api/VintagestoryAPI.Math.Vector.Vec3iAndFacingFlags.yml b/api/VintagestoryAPI.Math.Vector.Vec3iAndFacingFlags.yml index 0b18666d..bf21e843 100644 --- a/api/VintagestoryAPI.Math.Vector.Vec3iAndFacingFlags.yml +++ b/api/VintagestoryAPI.Math.Vector.Vec3iAndFacingFlags.yml @@ -26,8 +26,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3iAndFacingFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Vec3iAndFacingFlags path: Math/Vector/Vec3iAndFacingFlags.cs startLine: 4 @@ -61,8 +61,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3iAndFacingFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: X path: Math/Vector/Vec3iAndFacingFlags.cs startLine: 7 @@ -88,8 +88,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3iAndFacingFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Y path: Math/Vector/Vec3iAndFacingFlags.cs startLine: 7 @@ -115,8 +115,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3iAndFacingFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Z path: Math/Vector/Vec3iAndFacingFlags.cs startLine: 7 @@ -142,8 +142,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3iAndFacingFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: FacingFlags path: Math/Vector/Vec3iAndFacingFlags.cs startLine: 8 @@ -169,8 +169,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3iAndFacingFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OppositeFlags path: Math/Vector/Vec3iAndFacingFlags.cs startLine: 9 @@ -196,8 +196,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3iAndFacingFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: extIndexOffset path: Math/Vector/Vec3iAndFacingFlags.cs startLine: 10 @@ -223,8 +223,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3iAndFacingFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OppositeFlagsUpperOrLeft path: Math/Vector/Vec3iAndFacingFlags.cs startLine: 11 @@ -250,8 +250,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3iAndFacingFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: OppositeFlagsLowerOrRight path: Math/Vector/Vec3iAndFacingFlags.cs startLine: 12 @@ -277,8 +277,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3iAndFacingFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: Initialize path: Math/Vector/Vec3iAndFacingFlags.cs startLine: 14 @@ -309,8 +309,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3iAndFacingFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec3iAndFacingFlags.cs startLine: 19 @@ -349,8 +349,8 @@ items: source: remote: path: VintagestoryApi/Math/Vector/Vec3iAndFacingFlags.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: .ctor path: Math/Vector/Vec3iAndFacingFlags.cs startLine: 31 diff --git a/api/VintagestoryAPI.Util.SKColorExtensions.yml b/api/VintagestoryAPI.Util.SKColorExtensions.yml index 3d310e83..95a0c9b3 100644 --- a/api/VintagestoryAPI.Util.SKColorExtensions.yml +++ b/api/VintagestoryAPI.Util.SKColorExtensions.yml @@ -16,8 +16,8 @@ items: source: remote: path: VintagestoryApi/Util/SKColorExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: SKColorExtensions path: Util/SKColorExtensions.cs startLine: 4 @@ -52,8 +52,8 @@ items: source: remote: path: VintagestoryApi/Util/SKColorExtensions.cs - branch: d6806ed2527579840d2aaf86b17f0c5078d743b1 - repo: https://gitlab-ci-token:64_N9Sxr9MX2YqsptD_Zy3q@git.striver.net/vintagecraft/game.git + branch: e450abe5fddf2a92d3eff652939a6754393473f6 + repo: https://gitlab-ci-token:64_PX7i2ftgqxEk4RiTaS8x@git.striver.net/vintagecraft/game.git id: ToArgb path: Util/SKColorExtensions.cs startLine: 6 diff --git a/docs/api/Vintagestory.API.Client.Matrixf.html b/docs/api/Vintagestory.API.Client.Matrixf.html index 8ef34bbd..ad99ae22 100644 --- a/docs/api/Vintagestory.API.Client.Matrixf.html +++ b/docs/api/Vintagestory.API.Client.Matrixf.html @@ -178,6 +178,37 @@

+ +

+ Matrixf(float[]) + +

+ +
+
+ +
+
public Matrixf(float[] values)
+
+ +

Parameters

+
+
values float[]
+
+
+ + + + + + + + + + + +

Fields

@@ -473,6 +504,42 @@

Returns

+ + +

+ Mul(Matrixf) + +

+ +
+
+ +
+
public Matrixf Mul(Matrixf matrix)
+
+ +

Parameters

+
+
matrix Matrixf
+
+
+ +

Returns

+
+
Matrixf
+
+
+ + + + + + + + + + +

diff --git a/docs/api/Vintagestory.API.Common.BlockSchematic.html b/docs/api/Vintagestory.API.Common.BlockSchematic.html index eae0f322..f7cfb576 100644 --- a/docs/api/Vintagestory.API.Common.BlockSchematic.html +++ b/docs/api/Vintagestory.API.Common.BlockSchematic.html @@ -1080,7 +1080,8 @@

Set by the RemapperAssistant in OnFinalizeAssets

+

Set by the RemapperAssistant in OnFinalizeAssets +
Heads up!: This is unordered, it will iterate through the different game versions' remaps not necessarily in the order they originally appear in remaps.json config. If any block remaps over the years have duplicate original block names, behavior for those ones may be unpredictable

diff --git a/docs/api/Vintagestory.API.Config.GameVersion.html b/docs/api/Vintagestory.API.Config.GameVersion.html index 5ae26dc4..f2826203 100644 --- a/docs/api/Vintagestory.API.Config.GameVersion.html +++ b/docs/api/Vintagestory.API.Config.GameVersion.html @@ -257,7 +257,7 @@

-
public const EnumGameBranch Branch = Unstable
+
public const EnumGameBranch Branch = Stable
@@ -474,7 +474,7 @@

-
public const string ShortGameVersion = "1.19.4-rc.3"
+
public const string ShortGameVersion = "1.19.4"
diff --git a/docs/index.html b/docs/index.html index 3bc7ace1..32b55f34 100644 --- a/docs/index.html +++ b/docs/index.html @@ -89,7 +89,7 @@

Welcome to the Vintage St

This is just a reference doc

If you want to learn how to mod the game, check out the tutorials on the Official Vintage Story Wiki, this site merely acts as a reference documentation to look stuff up on

-

Reference doc for game version 1.19.4-rc.3

+

Reference doc for game version 1.19.4

diff --git a/docs/index.json b/docs/index.json index 1c1fb7b1..1d08f3cf 100644 --- a/docs/index.json +++ b/docs/index.json @@ -1192,7 +1192,7 @@ "api/Vintagestory.API.Client.Matrixf.html": { "href": "api/Vintagestory.API.Client.Matrixf.html", "title": "Class Matrixf | VintageStory API", - "keywords": "Class Matrixf Namespace Vintagestory.API.Client Assembly VintagestoryAPI.dll public class Matrixf Inheritance object Matrixf Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Constructors Matrixf() public Matrixf() Fields Values public float[] Values Field Value float[] Properties ValuesAsDouble public double[] ValuesAsDouble { get; } Property Value double[] Methods Clone() public Matrixf Clone() Returns Matrixf Create() public static Matrixf Create() Returns Matrixf FollowPlayer() public Matrixf FollowPlayer() Returns Matrixf FollowPlayerXZ() public Matrixf FollowPlayerXZ() Returns Matrixf Identity() public Matrixf Identity() Returns Matrixf Invert() public Matrixf Invert() Returns Matrixf Mul(float[]) public Matrixf Mul(float[] matrix) Parameters matrix float[] Returns Matrixf ReverseMul(float[]) public Matrixf ReverseMul(float[] matrix) Parameters matrix float[] Returns Matrixf Rotate(float, float, float) public Matrixf Rotate(float radX, float radY, float radZ) Parameters radX float radY float radZ float Returns Matrixf Rotate(Vec3f) public Matrixf Rotate(Vec3f radians) Parameters radians Vec3f Returns Matrixf RotateDeg(Vec3f) public Matrixf RotateDeg(Vec3f degrees) Parameters degrees Vec3f Returns Matrixf RotateX(float) public Matrixf RotateX(float radX) Parameters radX float Returns Matrixf RotateXDeg(float) public Matrixf RotateXDeg(float degX) Parameters degX float Returns Matrixf RotateY(float) public Matrixf RotateY(float radY) Parameters radY float Returns Matrixf RotateYDeg(float) public Matrixf RotateYDeg(float degY) Parameters degY float Returns Matrixf RotateZ(float) public Matrixf RotateZ(float radZ) Parameters radZ float Returns Matrixf RotateZDeg(float) public Matrixf RotateZDeg(float degZ) Parameters degZ float Returns Matrixf Scale(float, float, float) public Matrixf Scale(float x, float y, float z) Parameters x float y float z float Returns Matrixf Set(double[]) public Matrixf Set(double[] values) Parameters values double[] Returns Matrixf Set(float[]) public Matrixf Set(float[] values) Parameters values float[] Returns Matrixf TransformVector(Vec4d) public Vec4d TransformVector(Vec4d vec) Parameters vec Vec4d Returns Vec4d TransformVector(Vec4f) public Vec4f TransformVector(Vec4f vec) Parameters vec Vec4f Returns Vec4f Translate(double, double, double) public Matrixf Translate(double x, double y, double z) Parameters x double y double z double Returns Matrixf Translate(float, float, float) public Matrixf Translate(float x, float y, float z) Parameters x float y float z float Returns Matrixf" + "keywords": "Class Matrixf Namespace Vintagestory.API.Client Assembly VintagestoryAPI.dll public class Matrixf Inheritance object Matrixf Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Constructors Matrixf() public Matrixf() Matrixf(float[]) public Matrixf(float[] values) Parameters values float[] Fields Values public float[] Values Field Value float[] Properties ValuesAsDouble public double[] ValuesAsDouble { get; } Property Value double[] Methods Clone() public Matrixf Clone() Returns Matrixf Create() public static Matrixf Create() Returns Matrixf FollowPlayer() public Matrixf FollowPlayer() Returns Matrixf FollowPlayerXZ() public Matrixf FollowPlayerXZ() Returns Matrixf Identity() public Matrixf Identity() Returns Matrixf Invert() public Matrixf Invert() Returns Matrixf Mul(float[]) public Matrixf Mul(float[] matrix) Parameters matrix float[] Returns Matrixf Mul(Matrixf) public Matrixf Mul(Matrixf matrix) Parameters matrix Matrixf Returns Matrixf ReverseMul(float[]) public Matrixf ReverseMul(float[] matrix) Parameters matrix float[] Returns Matrixf Rotate(float, float, float) public Matrixf Rotate(float radX, float radY, float radZ) Parameters radX float radY float radZ float Returns Matrixf Rotate(Vec3f) public Matrixf Rotate(Vec3f radians) Parameters radians Vec3f Returns Matrixf RotateDeg(Vec3f) public Matrixf RotateDeg(Vec3f degrees) Parameters degrees Vec3f Returns Matrixf RotateX(float) public Matrixf RotateX(float radX) Parameters radX float Returns Matrixf RotateXDeg(float) public Matrixf RotateXDeg(float degX) Parameters degX float Returns Matrixf RotateY(float) public Matrixf RotateY(float radY) Parameters radY float Returns Matrixf RotateYDeg(float) public Matrixf RotateYDeg(float degY) Parameters degY float Returns Matrixf RotateZ(float) public Matrixf RotateZ(float radZ) Parameters radZ float Returns Matrixf RotateZDeg(float) public Matrixf RotateZDeg(float degZ) Parameters degZ float Returns Matrixf Scale(float, float, float) public Matrixf Scale(float x, float y, float z) Parameters x float y float z float Returns Matrixf Set(double[]) public Matrixf Set(double[] values) Parameters values double[] Returns Matrixf Set(float[]) public Matrixf Set(float[] values) Parameters values float[] Returns Matrixf TransformVector(Vec4d) public Vec4d TransformVector(Vec4d vec) Parameters vec Vec4d Returns Vec4d TransformVector(Vec4f) public Vec4f TransformVector(Vec4f vec) Parameters vec Vec4f Returns Vec4f Translate(double, double, double) public Matrixf Translate(double x, double y, double z) Parameters x double y double z double Returns Matrixf Translate(float, float, float) public Matrixf Translate(float x, float y, float z) Parameters x float y float z float Returns Matrixf" }, "api/Vintagestory.API.Client.MeshData.MeshDataFilterDelegate.html": { "href": "api/Vintagestory.API.Client.MeshData.MeshDataFilterDelegate.html", @@ -1792,7 +1792,7 @@ "api/Vintagestory.API.Common.BlockSchematic.html": { "href": "api/Vintagestory.API.Common.BlockSchematic.html", "title": "Class BlockSchematic | VintageStory API", - "keywords": "Class BlockSchematic Namespace Vintagestory.API.Common Assembly VintagestoryAPI.dll [JsonObject(MemberSerialization.OptIn)] public class BlockSchematic Inheritance object BlockSchematic Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Constructors BlockSchematic() public BlockSchematic() Fields BlockCodes [JsonProperty] public Dictionary BlockCodes Field Value Dictionary BlockEntities [JsonProperty] public Dictionary BlockEntities Field Value Dictionary BlockEntitiesUnpacked public Dictionary BlockEntitiesUnpacked Field Value Dictionary BlockIds [JsonProperty] public List BlockIds Field Value List BlocksUnpacked public Dictionary BlocksUnpacked Field Value Dictionary DecorIds [JsonProperty] public List DecorIds Field Value List DecorIndices [JsonProperty] public List DecorIndices Field Value List DecorsUnpacked public Dictionary DecorsUnpacked Field Value Dictionary Entities [JsonProperty] public List Entities Field Value List EntitiesUnpacked public List EntitiesUnpacked Field Value List EntranceRotation [JsonProperty] public int EntranceRotation Field Value int FluidsLayerUnpacked public Dictionary FluidsLayerUnpacked Field Value Dictionary GameVersion [JsonProperty] public string GameVersion Field Value string Indices [JsonProperty] public List Indices Field Value List ItemCodes [JsonProperty] public Dictionary ItemCodes Field Value Dictionary OmitLiquids public bool OmitLiquids Field Value bool PackedOffset public FastVec3i PackedOffset Field Value FastVec3i PathwayOffsets Distance from the bottom left door block, so the bottom left door block is always at 0,0,0 public BlockPos[][] PathwayOffsets Field Value BlockPos[][] PathwaySides public BlockFacing[] PathwaySides Field Value BlockFacing[] PathwayStarts Distance positions from bottom left corner of the schematic. Only the first door block. public BlockPos[] PathwayStarts Field Value BlockPos[] ReplaceMode [JsonProperty] public EnumReplaceMode ReplaceMode Field Value EnumReplaceMode SizeX [JsonProperty] public int SizeX Field Value int SizeY [JsonProperty] public int SizeY Field Value int SizeZ [JsonProperty] public int SizeZ Field Value int UndergroundCheckPositions public BlockPos[] UndergroundCheckPositions Field Value BlockPos[] empty protected ushort empty Field Value ushort fillerBlock protected Block fillerBlock Field Value Block pathwayBlock protected Block pathwayBlock Field Value Block undergroundBlock protected Block undergroundBlock Field Value Block Properties BlockRemaps Set by the RemapperAssistant in OnFinalizeAssets public static Dictionary> BlockRemaps { get; set; } Property Value Dictionary> ItemRemaps Set by the RemapperAssistant in OnFinalizeAssets public static Dictionary> ItemRemaps { get; set; } Property Value Dictionary> Methods AddArea(IWorldAccessor, BlockPos, BlockPos) Adds an area to the schematic. public virtual void AddArea(IWorldAccessor world, BlockPos start, BlockPos end) Parameters world IWorldAccessor The world the blocks are in start BlockPos The start position of all the blocks. end BlockPos The end position of all the blocks. AdjustStartPos(BlockPos, EnumOrigin) Adjusts the starting position of the schemtic. public virtual BlockPos AdjustStartPos(BlockPos startpos, EnumOrigin origin) Parameters startpos BlockPos origin EnumOrigin Returns BlockPos ClonePacked() Makes a deep copy of the packed schematic. Unpacked data and loaded meta information is not cloned. public virtual BlockSchematic ClonePacked() Returns BlockSchematic DecodeBlockEntityData(string) Imports the tree data from a string. public virtual TreeAttribute DecodeBlockEntityData(string data) Parameters data string Returns TreeAttribute EncodeBlockEntityData(BlockEntity) Exports the block entity data to a string. public virtual string EncodeBlockEntityData(BlockEntity be) Parameters be BlockEntity Returns string GetJustPositions(BlockPos) Gets just the positions of the blocks. public virtual BlockPos[] GetJustPositions(BlockPos origin) Parameters origin BlockPos The origin point to start from Returns BlockPos[] An array containing the BlockPos of each block in the area. GetStartPos(BlockPos, EnumOrigin) Gets the starting position of the schematic. public virtual BlockPos GetStartPos(BlockPos pos, EnumOrigin origin) Parameters pos BlockPos origin EnumOrigin Returns BlockPos Init(IBlockAccessor) public virtual void Init(IBlockAccessor blockAccessor) Parameters blockAccessor IBlockAccessor InitMetaBlocks(IBlockAccessor) public void InitMetaBlocks(IBlockAccessor blockAccessor) Parameters blockAccessor IBlockAccessor LoadFromFile(string, ref string) Loads the schematic from a file. public static BlockSchematic LoadFromFile(string infilepath, ref string error) Parameters infilepath string error string Returns BlockSchematic LoadFromString(string, ref string) Loads a schematic from a string. public static BlockSchematic LoadFromString(string jsoncode, ref string error) Parameters jsoncode string error string Returns BlockSchematic LoadMetaInformationAndValidate(IBlockAccessor, IWorldAccessor, string) Loads the meta information for each block in the schematic. public void LoadMetaInformationAndValidate(IBlockAccessor blockAccessor, IWorldAccessor worldForResolve, string fileNameForLogging) Parameters blockAccessor IBlockAccessor worldForResolve IWorldAccessor fileNameForLogging string Pack(IWorldAccessor, BlockPos) public virtual bool Pack(IWorldAccessor world, BlockPos startPos) Parameters world IWorldAccessor startPos BlockPos Returns bool Place(IBlockAccessor, IWorldAccessor, BlockPos, bool) Will place all blocks using the configured replace mode. Note: If you use a revertable or bulk block accessor you will have to call PlaceBlockEntities() after the Commit() public virtual int Place(IBlockAccessor blockAccessor, IWorldAccessor worldForCollectibleResolve, BlockPos startPos, bool replaceMetaBlocks = true) Parameters blockAccessor IBlockAccessor worldForCollectibleResolve IWorldAccessor startPos BlockPos replaceMetaBlocks bool Returns int Place(IBlockAccessor, IWorldAccessor, BlockPos, EnumReplaceMode, bool) Will place all blocks using the supplied replace mode. Note: If you use a revertable or bulk block accessor you will have to call PlaceBlockEntities() after the Commit() public virtual int Place(IBlockAccessor blockAccessor, IWorldAccessor worldForCollectibleResolve, BlockPos startPos, EnumReplaceMode mode, bool replaceMetaBlocks = true) Parameters blockAccessor IBlockAccessor worldForCollectibleResolve IWorldAccessor startPos BlockPos mode EnumReplaceMode replaceMetaBlocks bool Returns int PlaceDecors(IBlockAccessor, BlockPos) public virtual void PlaceDecors(IBlockAccessor blockAccessor, BlockPos startPos) Parameters blockAccessor IBlockAccessor startPos BlockPos PlaceDecors(IBlockAccessor, BlockPos, Rectanglei) public virtual void PlaceDecors(IBlockAccessor blockAccessor, BlockPos startPos, Rectanglei rect) Parameters blockAccessor IBlockAccessor startPos BlockPos rect Rectanglei PlaceEntitiesAndBlockEntities(IBlockAccessor, IWorldAccessor, BlockPos, Dictionary, Dictionary, bool, Dictionary>, int, Dictionary, bool) Places all the entities and blocks in the schematic at the position. public void PlaceEntitiesAndBlockEntities(IBlockAccessor blockAccessor, IWorldAccessor worldForCollectibleResolve, BlockPos startPos, Dictionary blockCodes, Dictionary itemCodes, bool replaceBlockEntities = false, Dictionary> replaceBlocks = null, int centerrockblockid = 0, Dictionary layerBlockForBlockEntities = null, bool resolveImports = true) Parameters blockAccessor IBlockAccessor worldForCollectibleResolve IWorldAccessor startPos BlockPos blockCodes Dictionary itemCodes Dictionary replaceBlockEntities bool replaceBlocks Dictionary> centerrockblockid int layerBlockForBlockEntities Dictionary resolveImports bool Turn it off to spawn structures as they are. For example, in this mode, instead of traders, their meta spawners will spawn PlaceReplaceAll(IBlockAccessor, BlockPos, Block, bool) protected virtual int PlaceReplaceAll(IBlockAccessor blockAccessor, BlockPos pos, Block newBlock, bool replaceMeta) Parameters blockAccessor IBlockAccessor pos BlockPos newBlock Block replaceMeta bool Returns int PlaceReplaceAllNoAir(IBlockAccessor, BlockPos, Block, bool) protected virtual int PlaceReplaceAllNoAir(IBlockAccessor blockAccessor, BlockPos pos, Block newBlock, bool replaceMeta) Parameters blockAccessor IBlockAccessor pos BlockPos newBlock Block replaceMeta bool Returns int PlaceReplaceOnlyAir(IBlockAccessor, BlockPos, Block, bool) protected virtual int PlaceReplaceOnlyAir(IBlockAccessor blockAccessor, BlockPos pos, Block newBlock, bool replaceMeta) Parameters blockAccessor IBlockAccessor pos BlockPos newBlock Block replaceMeta bool Returns int PlaceReplaceable(IBlockAccessor, BlockPos, Block, bool) protected virtual int PlaceReplaceable(IBlockAccessor blockAccessor, BlockPos pos, Block newBlock, bool replaceMeta) Parameters blockAccessor IBlockAccessor pos BlockPos newBlock Block replaceMeta bool Returns int Save(string) Saves a schematic to a file. public virtual string Save(string outfilepath) Parameters outfilepath string Returns string StringEncodeTreeAttribute(ITreeAttribute) Exports the tree attribute data to a string. public virtual string StringEncodeTreeAttribute(ITreeAttribute tree) Parameters tree ITreeAttribute Returns string ToJson() public virtual string ToJson() Returns string TransformWhilePacked(IWorldAccessor, EnumOrigin, int, EnumAxis?) Attempts to transform each block as they are placed in directions different from the schematic. public virtual void TransformWhilePacked(IWorldAccessor worldForResolve, EnumOrigin aroundOrigin, int angle, EnumAxis? flipAxis = null) Parameters worldForResolve IWorldAccessor aroundOrigin EnumOrigin angle int flipAxis EnumAxis?" + "keywords": "Class BlockSchematic Namespace Vintagestory.API.Common Assembly VintagestoryAPI.dll [JsonObject(MemberSerialization.OptIn)] public class BlockSchematic Inheritance object BlockSchematic Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Constructors BlockSchematic() public BlockSchematic() Fields BlockCodes [JsonProperty] public Dictionary BlockCodes Field Value Dictionary BlockEntities [JsonProperty] public Dictionary BlockEntities Field Value Dictionary BlockEntitiesUnpacked public Dictionary BlockEntitiesUnpacked Field Value Dictionary BlockIds [JsonProperty] public List BlockIds Field Value List BlocksUnpacked public Dictionary BlocksUnpacked Field Value Dictionary DecorIds [JsonProperty] public List DecorIds Field Value List DecorIndices [JsonProperty] public List DecorIndices Field Value List DecorsUnpacked public Dictionary DecorsUnpacked Field Value Dictionary Entities [JsonProperty] public List Entities Field Value List EntitiesUnpacked public List EntitiesUnpacked Field Value List EntranceRotation [JsonProperty] public int EntranceRotation Field Value int FluidsLayerUnpacked public Dictionary FluidsLayerUnpacked Field Value Dictionary GameVersion [JsonProperty] public string GameVersion Field Value string Indices [JsonProperty] public List Indices Field Value List ItemCodes [JsonProperty] public Dictionary ItemCodes Field Value Dictionary OmitLiquids public bool OmitLiquids Field Value bool PackedOffset public FastVec3i PackedOffset Field Value FastVec3i PathwayOffsets Distance from the bottom left door block, so the bottom left door block is always at 0,0,0 public BlockPos[][] PathwayOffsets Field Value BlockPos[][] PathwaySides public BlockFacing[] PathwaySides Field Value BlockFacing[] PathwayStarts Distance positions from bottom left corner of the schematic. Only the first door block. public BlockPos[] PathwayStarts Field Value BlockPos[] ReplaceMode [JsonProperty] public EnumReplaceMode ReplaceMode Field Value EnumReplaceMode SizeX [JsonProperty] public int SizeX Field Value int SizeY [JsonProperty] public int SizeY Field Value int SizeZ [JsonProperty] public int SizeZ Field Value int UndergroundCheckPositions public BlockPos[] UndergroundCheckPositions Field Value BlockPos[] empty protected ushort empty Field Value ushort fillerBlock protected Block fillerBlock Field Value Block pathwayBlock protected Block pathwayBlock Field Value Block undergroundBlock protected Block undergroundBlock Field Value Block Properties BlockRemaps Set by the RemapperAssistant in OnFinalizeAssets Heads up!: This is unordered, it will iterate through the different game versions' remaps not necessarily in the order they originally appear in remaps.json config. If any block remaps over the years have duplicate original block names, behavior for those ones may be unpredictable public static Dictionary> BlockRemaps { get; set; } Property Value Dictionary> ItemRemaps Set by the RemapperAssistant in OnFinalizeAssets public static Dictionary> ItemRemaps { get; set; } Property Value Dictionary> Methods AddArea(IWorldAccessor, BlockPos, BlockPos) Adds an area to the schematic. public virtual void AddArea(IWorldAccessor world, BlockPos start, BlockPos end) Parameters world IWorldAccessor The world the blocks are in start BlockPos The start position of all the blocks. end BlockPos The end position of all the blocks. AdjustStartPos(BlockPos, EnumOrigin) Adjusts the starting position of the schemtic. public virtual BlockPos AdjustStartPos(BlockPos startpos, EnumOrigin origin) Parameters startpos BlockPos origin EnumOrigin Returns BlockPos ClonePacked() Makes a deep copy of the packed schematic. Unpacked data and loaded meta information is not cloned. public virtual BlockSchematic ClonePacked() Returns BlockSchematic DecodeBlockEntityData(string) Imports the tree data from a string. public virtual TreeAttribute DecodeBlockEntityData(string data) Parameters data string Returns TreeAttribute EncodeBlockEntityData(BlockEntity) Exports the block entity data to a string. public virtual string EncodeBlockEntityData(BlockEntity be) Parameters be BlockEntity Returns string GetJustPositions(BlockPos) Gets just the positions of the blocks. public virtual BlockPos[] GetJustPositions(BlockPos origin) Parameters origin BlockPos The origin point to start from Returns BlockPos[] An array containing the BlockPos of each block in the area. GetStartPos(BlockPos, EnumOrigin) Gets the starting position of the schematic. public virtual BlockPos GetStartPos(BlockPos pos, EnumOrigin origin) Parameters pos BlockPos origin EnumOrigin Returns BlockPos Init(IBlockAccessor) public virtual void Init(IBlockAccessor blockAccessor) Parameters blockAccessor IBlockAccessor InitMetaBlocks(IBlockAccessor) public void InitMetaBlocks(IBlockAccessor blockAccessor) Parameters blockAccessor IBlockAccessor LoadFromFile(string, ref string) Loads the schematic from a file. public static BlockSchematic LoadFromFile(string infilepath, ref string error) Parameters infilepath string error string Returns BlockSchematic LoadFromString(string, ref string) Loads a schematic from a string. public static BlockSchematic LoadFromString(string jsoncode, ref string error) Parameters jsoncode string error string Returns BlockSchematic LoadMetaInformationAndValidate(IBlockAccessor, IWorldAccessor, string) Loads the meta information for each block in the schematic. public void LoadMetaInformationAndValidate(IBlockAccessor blockAccessor, IWorldAccessor worldForResolve, string fileNameForLogging) Parameters blockAccessor IBlockAccessor worldForResolve IWorldAccessor fileNameForLogging string Pack(IWorldAccessor, BlockPos) public virtual bool Pack(IWorldAccessor world, BlockPos startPos) Parameters world IWorldAccessor startPos BlockPos Returns bool Place(IBlockAccessor, IWorldAccessor, BlockPos, bool) Will place all blocks using the configured replace mode. Note: If you use a revertable or bulk block accessor you will have to call PlaceBlockEntities() after the Commit() public virtual int Place(IBlockAccessor blockAccessor, IWorldAccessor worldForCollectibleResolve, BlockPos startPos, bool replaceMetaBlocks = true) Parameters blockAccessor IBlockAccessor worldForCollectibleResolve IWorldAccessor startPos BlockPos replaceMetaBlocks bool Returns int Place(IBlockAccessor, IWorldAccessor, BlockPos, EnumReplaceMode, bool) Will place all blocks using the supplied replace mode. Note: If you use a revertable or bulk block accessor you will have to call PlaceBlockEntities() after the Commit() public virtual int Place(IBlockAccessor blockAccessor, IWorldAccessor worldForCollectibleResolve, BlockPos startPos, EnumReplaceMode mode, bool replaceMetaBlocks = true) Parameters blockAccessor IBlockAccessor worldForCollectibleResolve IWorldAccessor startPos BlockPos mode EnumReplaceMode replaceMetaBlocks bool Returns int PlaceDecors(IBlockAccessor, BlockPos) public virtual void PlaceDecors(IBlockAccessor blockAccessor, BlockPos startPos) Parameters blockAccessor IBlockAccessor startPos BlockPos PlaceDecors(IBlockAccessor, BlockPos, Rectanglei) public virtual void PlaceDecors(IBlockAccessor blockAccessor, BlockPos startPos, Rectanglei rect) Parameters blockAccessor IBlockAccessor startPos BlockPos rect Rectanglei PlaceEntitiesAndBlockEntities(IBlockAccessor, IWorldAccessor, BlockPos, Dictionary, Dictionary, bool, Dictionary>, int, Dictionary, bool) Places all the entities and blocks in the schematic at the position. public void PlaceEntitiesAndBlockEntities(IBlockAccessor blockAccessor, IWorldAccessor worldForCollectibleResolve, BlockPos startPos, Dictionary blockCodes, Dictionary itemCodes, bool replaceBlockEntities = false, Dictionary> replaceBlocks = null, int centerrockblockid = 0, Dictionary layerBlockForBlockEntities = null, bool resolveImports = true) Parameters blockAccessor IBlockAccessor worldForCollectibleResolve IWorldAccessor startPos BlockPos blockCodes Dictionary itemCodes Dictionary replaceBlockEntities bool replaceBlocks Dictionary> centerrockblockid int layerBlockForBlockEntities Dictionary resolveImports bool Turn it off to spawn structures as they are. For example, in this mode, instead of traders, their meta spawners will spawn PlaceReplaceAll(IBlockAccessor, BlockPos, Block, bool) protected virtual int PlaceReplaceAll(IBlockAccessor blockAccessor, BlockPos pos, Block newBlock, bool replaceMeta) Parameters blockAccessor IBlockAccessor pos BlockPos newBlock Block replaceMeta bool Returns int PlaceReplaceAllNoAir(IBlockAccessor, BlockPos, Block, bool) protected virtual int PlaceReplaceAllNoAir(IBlockAccessor blockAccessor, BlockPos pos, Block newBlock, bool replaceMeta) Parameters blockAccessor IBlockAccessor pos BlockPos newBlock Block replaceMeta bool Returns int PlaceReplaceOnlyAir(IBlockAccessor, BlockPos, Block, bool) protected virtual int PlaceReplaceOnlyAir(IBlockAccessor blockAccessor, BlockPos pos, Block newBlock, bool replaceMeta) Parameters blockAccessor IBlockAccessor pos BlockPos newBlock Block replaceMeta bool Returns int PlaceReplaceable(IBlockAccessor, BlockPos, Block, bool) protected virtual int PlaceReplaceable(IBlockAccessor blockAccessor, BlockPos pos, Block newBlock, bool replaceMeta) Parameters blockAccessor IBlockAccessor pos BlockPos newBlock Block replaceMeta bool Returns int Save(string) Saves a schematic to a file. public virtual string Save(string outfilepath) Parameters outfilepath string Returns string StringEncodeTreeAttribute(ITreeAttribute) Exports the tree attribute data to a string. public virtual string StringEncodeTreeAttribute(ITreeAttribute tree) Parameters tree ITreeAttribute Returns string ToJson() public virtual string ToJson() Returns string TransformWhilePacked(IWorldAccessor, EnumOrigin, int, EnumAxis?) Attempts to transform each block as they are placed in directions different from the schematic. public virtual void TransformWhilePacked(IWorldAccessor worldForResolve, EnumOrigin aroundOrigin, int angle, EnumAxis? flipAxis = null) Parameters worldForResolve IWorldAccessor aroundOrigin EnumOrigin angle int flipAxis EnumAxis?" }, "api/Vintagestory.API.Common.BlockSelection.html": { "href": "api/Vintagestory.API.Common.BlockSelection.html", @@ -3827,7 +3827,7 @@ "api/Vintagestory.API.Config.GameVersion.html": { "href": "api/Vintagestory.API.Config.GameVersion.html", "title": "Class GameVersion | VintageStory API", - "keywords": "Class GameVersion Namespace Vintagestory.API.Config Assembly VintagestoryAPI.dll The games current version public static class GameVersion Inheritance object GameVersion Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Fields APIVersion Version of the Mod API public const string APIVersion = \"1.19.0\" Field Value string AssemblyVersion Assembly Info Version number in the format: major.minor.revision public const string AssemblyVersion = \"1.0.0.0\" Field Value string BlockItemMappingVersion \"Version\" of the block and item mapping. This number gets increased by 1 when remappings are needed public static int BlockItemMappingVersion Field Value int Branch Whether this is a stable or unstable version public const EnumGameBranch Branch = Unstable Field Value EnumGameBranch ChunkdataVersion Version of the chunkdata compression for individual WorldChunks (0 is Deflate; 1 is ZSTD and palettised) Also affects compression of network packets sent public const int ChunkdataVersion = 2 Field Value int CopyRight Copyright notice public const string CopyRight = \"Copyright © 2016-2024 Anego Studios\" Field Value string DatabaseVersion Version of the savegame database public static int DatabaseVersion Field Value int LongGameVersion Version number in the format: major.minor.revision [release title] public static string LongGameVersion Field Value string NetworkVersion Version of the Network Protocol public const string NetworkVersion = \"1.19.7\" Field Value string OverallVersion Assembly Info Version number in the format: major.minor.revision public const string OverallVersion = \"1.19.4\" Field Value string ShortGameVersion Version number in the format: major.minor.revision[appendix] public const string ShortGameVersion = \"1.19.4-rc.3\" Field Value string WorldGenVersion Version of the world generator - a change in version will insert a smoothed chunk between old and new version public const int WorldGenVersion = 2 Field Value int Properties ReleaseType public static EnumReleaseType ReleaseType { get; } Property Value EnumReleaseType Methods EnsureEqualVersionOrKillExecutable(ICoreAPI, string, string, string) public static void EnsureEqualVersionOrKillExecutable(ICoreAPI api, string version, string reference, string modName) Parameters api ICoreAPI version string reference string modName string GetReleaseType(string) public static EnumReleaseType GetReleaseType(string version) Parameters version string Returns EnumReleaseType IsAtLeastVersion(string) Returns true if supplied version is the same or higher as the current version public static bool IsAtLeastVersion(string version) Parameters version string Returns bool IsAtLeastVersion(string, string) Returns true if supplied version is the same or higher as the reference version public static bool IsAtLeastVersion(string version, string reference) Parameters version string reference string Returns bool IsCompatibleApiVersion(string) Returns true if given version has the same major and minor version. Ignores revision. public static bool IsCompatibleApiVersion(string version) Parameters version string Returns bool IsCompatibleNetworkVersion(string) Returns true if given version has the same major and minor version. Ignores revision. public static bool IsCompatibleNetworkVersion(string version) Parameters version string Returns bool IsLowerVersionThan(string, string) public static bool IsLowerVersionThan(string version, string reference) Parameters version string reference string Returns bool IsNewerVersionThan(string, string) Returns true if supplied version is the higher as the reference version public static bool IsNewerVersionThan(string version, string reference) Parameters version string reference string Returns bool SplitVersionString(string) public static int[] SplitVersionString(string version) Parameters version string Returns int[]" + "keywords": "Class GameVersion Namespace Vintagestory.API.Config Assembly VintagestoryAPI.dll The games current version public static class GameVersion Inheritance object GameVersion Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Fields APIVersion Version of the Mod API public const string APIVersion = \"1.19.0\" Field Value string AssemblyVersion Assembly Info Version number in the format: major.minor.revision public const string AssemblyVersion = \"1.0.0.0\" Field Value string BlockItemMappingVersion \"Version\" of the block and item mapping. This number gets increased by 1 when remappings are needed public static int BlockItemMappingVersion Field Value int Branch Whether this is a stable or unstable version public const EnumGameBranch Branch = Stable Field Value EnumGameBranch ChunkdataVersion Version of the chunkdata compression for individual WorldChunks (0 is Deflate; 1 is ZSTD and palettised) Also affects compression of network packets sent public const int ChunkdataVersion = 2 Field Value int CopyRight Copyright notice public const string CopyRight = \"Copyright © 2016-2024 Anego Studios\" Field Value string DatabaseVersion Version of the savegame database public static int DatabaseVersion Field Value int LongGameVersion Version number in the format: major.minor.revision [release title] public static string LongGameVersion Field Value string NetworkVersion Version of the Network Protocol public const string NetworkVersion = \"1.19.7\" Field Value string OverallVersion Assembly Info Version number in the format: major.minor.revision public const string OverallVersion = \"1.19.4\" Field Value string ShortGameVersion Version number in the format: major.minor.revision[appendix] public const string ShortGameVersion = \"1.19.4\" Field Value string WorldGenVersion Version of the world generator - a change in version will insert a smoothed chunk between old and new version public const int WorldGenVersion = 2 Field Value int Properties ReleaseType public static EnumReleaseType ReleaseType { get; } Property Value EnumReleaseType Methods EnsureEqualVersionOrKillExecutable(ICoreAPI, string, string, string) public static void EnsureEqualVersionOrKillExecutable(ICoreAPI api, string version, string reference, string modName) Parameters api ICoreAPI version string reference string modName string GetReleaseType(string) public static EnumReleaseType GetReleaseType(string version) Parameters version string Returns EnumReleaseType IsAtLeastVersion(string) Returns true if supplied version is the same or higher as the current version public static bool IsAtLeastVersion(string version) Parameters version string Returns bool IsAtLeastVersion(string, string) Returns true if supplied version is the same or higher as the reference version public static bool IsAtLeastVersion(string version, string reference) Parameters version string reference string Returns bool IsCompatibleApiVersion(string) Returns true if given version has the same major and minor version. Ignores revision. public static bool IsCompatibleApiVersion(string version) Parameters version string Returns bool IsCompatibleNetworkVersion(string) Returns true if given version has the same major and minor version. Ignores revision. public static bool IsCompatibleNetworkVersion(string version) Parameters version string Returns bool IsLowerVersionThan(string, string) public static bool IsLowerVersionThan(string version, string reference) Parameters version string reference string Returns bool IsNewerVersionThan(string, string) Returns true if supplied version is the higher as the reference version public static bool IsNewerVersionThan(string version, string reference) Parameters version string reference string Returns bool SplitVersionString(string) public static int[] SplitVersionString(string version) Parameters version string Returns int[]" }, "api/Vintagestory.API.Config.GlobalConstants.html": { "href": "api/Vintagestory.API.Config.GlobalConstants.html", diff --git a/docs/xrefmap.yml b/docs/xrefmap.yml index a17776ab..c6546dd4 100644 --- a/docs/xrefmap.yml +++ b/docs/xrefmap.yml @@ -33315,6 +33315,15 @@ references: fullName.vb: Vintagestory.API.Client.Matrixf.New() nameWithType: Matrixf.Matrixf() nameWithType.vb: Matrixf.New() +- uid: Vintagestory.API.Client.Matrixf.#ctor(System.Single[]) + name: Matrixf(float[]) + href: api/Vintagestory.API.Client.Matrixf.html#Vintagestory_API_Client_Matrixf__ctor_System_Single___ + commentId: M:Vintagestory.API.Client.Matrixf.#ctor(System.Single[]) + name.vb: New(Single()) + fullName: Vintagestory.API.Client.Matrixf.Matrixf(float[]) + fullName.vb: Vintagestory.API.Client.Matrixf.New(Single()) + nameWithType: Matrixf.Matrixf(float[]) + nameWithType.vb: Matrixf.New(Single()) - uid: Vintagestory.API.Client.Matrixf.#ctor* name: Matrixf href: api/Vintagestory.API.Client.Matrixf.html#Vintagestory_API_Client_Matrixf__ctor_ @@ -33412,6 +33421,12 @@ references: fullName.vb: Vintagestory.API.Client.Matrixf.Mul(Single()) nameWithType: Matrixf.Mul(float[]) nameWithType.vb: Matrixf.Mul(Single()) +- uid: Vintagestory.API.Client.Matrixf.Mul(Vintagestory.API.Client.Matrixf) + name: Mul(Matrixf) + href: api/Vintagestory.API.Client.Matrixf.html#Vintagestory_API_Client_Matrixf_Mul_Vintagestory_API_Client_Matrixf_ + commentId: M:Vintagestory.API.Client.Matrixf.Mul(Vintagestory.API.Client.Matrixf) + fullName: Vintagestory.API.Client.Matrixf.Mul(Vintagestory.API.Client.Matrixf) + nameWithType: Matrixf.Mul(Matrixf) - uid: Vintagestory.API.Client.Matrixf.Mul* name: Mul href: api/Vintagestory.API.Client.Matrixf.html#Vintagestory_API_Client_Matrixf_Mul_